summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/PlatformConfiguration
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/PlatformConfiguration')
-rw-r--r--[-rwxr-xr-x]Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/VisualElement.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/VisualElement.cs b/Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/VisualElement.cs
index 6e3d456c..670c48c5 100755..100644
--- a/Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/VisualElement.cs
+++ b/Xamarin.Forms.Core/PlatformConfiguration/TizenSpecific/VisualElement.cs
@@ -7,7 +7,7 @@ namespace Xamarin.Forms.PlatformConfiguration.TizenSpecific
{
public static readonly BindableProperty StyleProperty = BindableProperty.Create("ThemeStyle", typeof(string), typeof(VisualElement), default(string));
- public static readonly BindableProperty IsFocusAllowedProperty = BindableProperty.Create("IsFocusAllowed", typeof(bool), typeof(VisualElement), true);
+ public static readonly BindableProperty IsFocusAllowedProperty = BindableProperty.Create("IsFocusAllowed", typeof(bool?), typeof(VisualElement), null);
[EditorBrowsable(EditorBrowsableState.Never)]
public static readonly BindableProperty NextFocusDirectionProperty = BindableProperty.Create("NextFocusDirection", typeof(string), typeof(VisualElement), FocusDirection.None, propertyChanged: OnNextFocusDirectionPropertyChanged);
@@ -47,9 +47,9 @@ namespace Xamarin.Forms.PlatformConfiguration.TizenSpecific
return config;
}
- public static bool IsFocusAllowed(BindableObject element)
+ public static bool? IsFocusAllowed(BindableObject element)
{
- return (bool)element.GetValue(IsFocusAllowedProperty);
+ return (bool?)element.GetValue(IsFocusAllowedProperty);
}
public static void SetFocusAllowed(BindableObject element, bool value)
@@ -57,7 +57,7 @@ namespace Xamarin.Forms.PlatformConfiguration.TizenSpecific
element.SetValue(IsFocusAllowedProperty, value);
}
- public static bool IsFocusAllowed(this IPlatformElementConfiguration<Tizen, FormsElement> config)
+ public static bool? IsFocusAllowed(this IPlatformElementConfiguration<Tizen, FormsElement> config)
{
return IsFocusAllowed(config.Element);
}