29 references to VisualElement
Microsoft.Maui.Controls (11)
PlatformConfiguration\TizenSpecific\ProgressBar.cs (1)
24 string style = VisualElement.GetStyle(element);
PlatformConfiguration\TizenSpecific\VisualElement.cs (10)
17 public static readonly BindableProperty StyleProperty = BindableProperty.Create("ThemeStyle", typeof(string), typeof(VisualElement), default(string)); 20 public static readonly BindableProperty IsFocusAllowedProperty = BindableProperty.Create("IsFocusAllowed", typeof(bool?), typeof(VisualElement), null); 24 public static readonly BindableProperty NextFocusDirectionProperty = BindableProperty.Create("NextFocusDirection", typeof(string), typeof(VisualElement), FocusDirection.None, propertyChanged: OnNextFocusDirectionPropertyChanged); 27 public static readonly BindableProperty NextFocusUpViewProperty = BindableProperty.Create("NextFocusUpView", typeof(View), typeof(VisualElement), default(View)); 30 public static readonly BindableProperty NextFocusDownViewProperty = BindableProperty.Create("NextFocusDownView", typeof(View), typeof(VisualElement), default(View)); 33 public static readonly BindableProperty NextFocusLeftViewProperty = BindableProperty.Create("NextFocusLeftView", typeof(View), typeof(VisualElement), default(View)); 36 public static readonly BindableProperty NextFocusRightViewProperty = BindableProperty.Create("NextFocusRightView", typeof(View), typeof(VisualElement), default(View)); 39 public static readonly BindableProperty NextFocusBackViewProperty = BindableProperty.Create("NextFocusBackView", typeof(View), typeof(VisualElement), default(View)); 42 public static readonly BindableProperty NextFocusForwardViewProperty = BindableProperty.Create("NextFocusForwardView", typeof(View), typeof(VisualElement), default(View)); 45 public static readonly BindableProperty ToolTipProperty = BindableProperty.Create("ToolTip", typeof(string), typeof(VisualElement), default(string));
Microsoft.Maui.Controls.Compatibility (18)
Tizen\Renderers\VisualElementRenderer.cs (18)
14using Specific = Microsoft.Maui.Controls.PlatformConfiguration.TizenSpecific.VisualElement; 49 RegisterPropertyHandler(Specific.StyleProperty, UpdateThemeStyle); 50 RegisterPropertyHandler(Specific.IsFocusAllowedProperty, UpdateFocusAllowed); 51 RegisterPropertyHandler(Specific.NextFocusDirectionProperty, UpdateFocusDirection); 52 RegisterPropertyHandler(Specific.NextFocusUpViewProperty, UpdateFocusUpView); 53 RegisterPropertyHandler(Specific.NextFocusDownViewProperty, UpdateFocusDownView); 54 RegisterPropertyHandler(Specific.NextFocusLeftViewProperty, UpdateFocusLeftView); 55 RegisterPropertyHandler(Specific.NextFocusRightViewProperty, UpdateFocusRightView); 56 RegisterPropertyHandler(Specific.NextFocusBackViewProperty, UpdateFocusBackView); 57 RegisterPropertyHandler(Specific.NextFocusForwardViewProperty, UpdateFocusForwardView); 58 RegisterPropertyHandler(Specific.ToolTipProperty, UpdateToolTip); 764 bool? isFocusAllowed = Specific.IsFocusAllowed(Element); 791 if (Specific.GetNextFocusUpView(Element) != null) 799 if (Specific.GetNextFocusDownView(Element) != null) 807 if (Specific.GetNextFocusLeftView(Element) != null) 815 if (Specific.GetNextFocusRightView(Element) != null) 823 if (Specific.GetNextFocusBackView(Element) != null) 831 if (Specific.GetNextFocusForwardView(Element) != null)