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/NumericEditorControl.cs')
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/NumericEditorControl.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/NumericEditorControl.cs b/Xamarin.PropertyEditing.Mac/Controls/NumericEditorControl.cs
index e56debf..3a00b28 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/NumericEditorControl.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/NumericEditorControl.cs
@@ -16,7 +16,10 @@ namespace Xamarin.PropertyEditing.Mac
{
base.TranslatesAutoresizingMaskIntoConstraints = false;
- NumericEditor = new NumericSpinEditor<T> (hostResources);
+ NumericEditor = new NumericSpinEditor<T> (hostResources)
+ {
+ ProxyResponder = new ProxyResponder (this, ProxyRowType.SingleView)
+ };
NumericEditor.ValueChanged += OnValueChanged;
var t = typeof (T);
@@ -129,6 +132,9 @@ namespace Xamarin.PropertyEditing.Mac
TranslatesAutoresizingMaskIntoConstraints = false,
};
+ this.NumericEditor.ProxyResponder = new ProxyResponder (this, ProxyRowType.FirstView);
+ this.inputModePopup.ProxyResponder = new ProxyResponder (this, ProxyRowType.LastView);
+
this.inputModePopup.Activated += (o, e) => {
var popupButton = o as NSPopUpButton;
ViewModel.InputMode = this.viewModelInputModes.FirstOrDefault (im => im.Identifier == popupButton.Title);
@@ -163,7 +169,7 @@ namespace Xamarin.PropertyEditing.Mac
private Type underlyingType;
- internal NSPopUpButton inputModePopup;
+ internal FocusablePopUpButton inputModePopup;
private IReadOnlyList<InputMode> viewModelInputModes;
private readonly NSLayoutConstraint editorRightConstraint;