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/Custom')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/Custom/ColorComponentEditor.cs11
1 files changed, 6 insertions, 5 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/Custom/ColorComponentEditor.cs b/Xamarin.PropertyEditing.Mac/Controls/Custom/ColorComponentEditor.cs
index 25a3516..0a17a23 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/Custom/ColorComponentEditor.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/Custom/ColorComponentEditor.cs
@@ -48,9 +48,13 @@ namespace Xamarin.PropertyEditing.Mac
var ce = new ChannelGroup {
Label = new UnfocusableTextField {
StringValue = $"{editor.Name}:",
- Alignment = NSTextAlignment.Right
+ Alignment = NSTextAlignment.Right,
+ BackgroundColor = NSColor.Clear
+ },
+ Editor = new ComponentSpinEditor (editor) {
+ BackgroundColor = NSColor.Clear,
+ TranslatesAutoresizingMaskIntoConstraints = true
},
- Editor = new ComponentSpinEditor (editor),
Gradient = new UnanimatedGradientLayer {
StartPoint = new CGPoint (0, 0),
EndPoint = new CGPoint (1, 0),
@@ -58,10 +62,7 @@ namespace Xamarin.PropertyEditing.Mac
}
};
- ce.Editor.TranslatesAutoresizingMaskIntoConstraints = true;
ce.Editor.ValueChanged += UpdateComponent;
- ce.Editor.BackgroundColor = NSColor.Clear;
- ce.Label.BackgroundColor = NSColor.Clear;
AddSubview (ce.Label);
AddSubview (ce.Editor);