Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominique Louis <savagesoftware@gmail.com>2019-01-21 15:27:43 +0300
committerGitHub <noreply@github.com>2019-01-21 15:27:43 +0300
commit21c98e48fc25619e7434045acf27c5963037fc77 (patch)
tree587dd8d38f12afee2111915543d7160248d961c3
parente646ca6481c477976a179fe59868b0a7f25f6201 (diff)
parent0834ed8eeb5318ef68d4422f37ea0a3bb6d5eabe (diff)
Merge pull request #501 from xamarin/exposes-arranglemode
[Mac] Exposes ArrangeMode in the public PropertyEditorPanel public API
-rw-r--r--Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs b/Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs
index 1d3c965..eb4dcd2 100644
--- a/Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs
+++ b/Xamarin.PropertyEditing.Mac/PropertyEditorPanel.cs
@@ -34,6 +34,12 @@ namespace Xamarin.PropertyEditing.Mac
Initialize ();
}
+ public PropertyArrangeMode ArrangeMode
+ {
+ get => this.viewModel.ArrangeMode;
+ set => this.viewModel.ArrangeMode = value;
+ }
+
public bool IsArrangeEnabled
{
get { return this.isArrangeEnabled; }