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:
authorJose Medrano <jose.medrano@microsoft.com>2019-01-18 20:13:08 +0300
committerJose Medrano <jose.medrano@microsoft.com>2019-01-21 13:11:00 +0300
commit0834ed8eeb5318ef68d4422f37ea0a3bb6d5eabe (patch)
tree587dd8d38f12afee2111915543d7160248d961c3 /Xamarin.PropertyEditing.Mac
parente646ca6481c477976a179fe59868b0a7f25f6201 (diff)
[Mac] Exposes ArrangeMode in the public PropertyEditorPanel public API
Fixes https://github.com/xamarin/Xamarin.PropertyEditing/issues/496
Diffstat (limited to 'Xamarin.PropertyEditing.Mac')
-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; }