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 <josmed@microsoft.com>2022-02-16 20:28:07 +0300
committervs-mobiletools-engineering-service2 <valco@microsoft.com>2022-03-01 18:01:15 +0300
commit22444972b8da17fe5146992866afd14fe75ff112 (patch)
tree4f2cc67effb5d91d97d0a2a129f1454f8ced7b81
parent0cd914209735725f17a755fba1907d95acce7005 (diff)
NumericSpinEditor uses the internal view ResponderProxy
-rw-r--r--Xamarin.PropertyEditing.Mac/Controls/Custom/NumericSpinEditor.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericSpinEditor.cs b/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericSpinEditor.cs
index de6f661..0d44862 100644
--- a/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericSpinEditor.cs
+++ b/Xamarin.PropertyEditing.Mac/Controls/Custom/NumericSpinEditor.cs
@@ -172,6 +172,12 @@ namespace Xamarin.PropertyEditing.Mac
set { this.numericEditor.AccessibilityTitle = value; }
}
+ public ProxyRowResponder ResponderProxy
+ {
+ get => this.numericEditor.ResponderProxy;
+ set => this.numericEditor.ResponderProxy = value;
+ }
+
public virtual void Reset ()
{
}