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:
Diffstat (limited to 'Xamarin.PropertyEditing.Mac/Controls/PropertyEditorControl.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/PropertyEditorControl.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/PropertyEditorControl.cs b/Xamarin.PropertyEditing.Mac/Controls/PropertyEditorControl.cs
index 92a71ac..e8e93ce 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/PropertyEditorControl.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/PropertyEditorControl.cs
@@ -16,7 +16,15 @@ namespace Xamarin.PropertyEditing.Mac
public nint TableRow { get; set; } = -1;
public NSTableView TableView { get; set; }
- public nfloat RowHeight { get; set; } = 24;
+
+ const int DefaultRowHeight = 22;
+ protected const int DefaultControlHeight = 22;
+ public const int DefaultFontSize = 11;
+ public const int DefaultPropertyLabelFontSize = 11;
+ public const int DefaultDescriptionLabelFontSize = 10;
+ public const string DefaultFontName = ".AppleSystemUIFont";
+ public nfloat RowHeight { get; set; } = DefaultRowHeight;
+ public bool TriggerRowChange => RowHeight != DefaultRowHeight;
PropertyViewModel viewModel;
public PropertyViewModel ViewModel {