Exemplo n.º 1
0
 /// <include file="../../docs/Microsoft.Maui.Controls/MenuItem.xml" path="//Member[@MemberName='GetAccelerator']/Docs" />
 public static Accelerator GetAccelerator(BindableObject bindable) => (Accelerator)bindable.GetValue(AcceleratorProperty);
Exemplo n.º 2
0
 /// <include file="../../docs/Microsoft.Maui.Controls/Element.xml" path="//Member[@MemberName='GetMenu']/Docs" />
 public static Menu GetMenu(BindableObject bindable) => (Menu)bindable.GetValue(MenuProperty);
Exemplo n.º 3
0
 /// <include file="../../docs/Microsoft.Maui.Controls/RadioButtonGroup.xml" path="//Member[@MemberName='GetGroupName']/Docs" />
 public static string GetGroupName(BindableObject b)
 {
     return((string)b.GetValue(GroupNameProperty));
 }
Exemplo n.º 4
0
 /// <include file="../../docs/Microsoft.Maui.Controls/RadioButtonGroup.xml" path="//Member[@MemberName='GetSelectedValue']/Docs" />
 public static object GetSelectedValue(BindableObject bindableObject)
 {
     return(bindableObject.GetValue(SelectedValueProperty));
 }
Exemplo n.º 5
0
 public static int GetRowSpan(BindableObject bindable)
 {
     return((int)bindable.GetValue(RowSpanProperty));
 }
Exemplo n.º 6
0
 static RadioButtonGroupController GetRadioButtonGroupController(BindableObject b)
 {
     return((RadioButtonGroupController)b.GetValue(RadioButtonGroupControllerProperty));
 }
Exemplo n.º 7
0
 public static int GetColumn(BindableObject bindable)
 {
     return((int)bindable.GetValue(ColumnProperty));
 }
Exemplo n.º 8
0
 /// <include file="../../docs/Microsoft.Maui.Controls/Routing.xml" path="//Member[@MemberName='GetRoute']/Docs" />
 public static string GetRoute(BindableObject obj)
 {
     return((string)obj.GetValue(RouteProperty));
 }
Exemplo n.º 9
0
 public static Point GetHeadlessOffset(BindableObject bindable)
 => (Point)bindable.GetValue(HeadlessOffsetProperty);
Exemplo n.º 10
0
 public static bool GetIsHeadless(BindableObject bindable)
 => (bool)bindable.GetValue(IsHeadlessProperty);
Exemplo n.º 11
0
 static bool GetCancelEvents(BindableObject bindable) => (bool)bindable.GetValue(CancelEventsProperty);