コード例 #1
0
ファイル: MenuItem.cs プロジェクト: josephwambura/maui
 /// <include file="../../docs/Microsoft.Maui.Controls/MenuItem.xml" path="//Member[@MemberName='GetAccelerator']/Docs" />
 public static Accelerator GetAccelerator(BindableObject bindable) => (Accelerator)bindable.GetValue(AcceleratorProperty);
コード例 #2
0
ファイル: Element.cs プロジェクト: josephwambura/maui
 /// <include file="../../docs/Microsoft.Maui.Controls/Element.xml" path="//Member[@MemberName='GetMenu']/Docs" />
 public static Menu GetMenu(BindableObject bindable) => (Menu)bindable.GetValue(MenuProperty);
コード例 #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));
 }
コード例 #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));
 }
コード例 #5
0
ファイル: Grid.cs プロジェクト: microhobby/maui-linux
 public static int GetRowSpan(BindableObject bindable)
 {
     return((int)bindable.GetValue(RowSpanProperty));
 }
コード例 #6
0
 static RadioButtonGroupController GetRadioButtonGroupController(BindableObject b)
 {
     return((RadioButtonGroupController)b.GetValue(RadioButtonGroupControllerProperty));
 }
コード例 #7
0
ファイル: Grid.cs プロジェクト: microhobby/maui-linux
 public static int GetColumn(BindableObject bindable)
 {
     return((int)bindable.GetValue(ColumnProperty));
 }
コード例 #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));
 }
コード例 #9
0
ファイル: CompressedLayout.cs プロジェクト: zhamppx97/maui
 public static Point GetHeadlessOffset(BindableObject bindable)
 => (Point)bindable.GetValue(HeadlessOffsetProperty);
コード例 #10
0
ファイル: CompressedLayout.cs プロジェクト: zhamppx97/maui
 public static bool GetIsHeadless(BindableObject bindable)
 => (bool)bindable.GetValue(IsHeadlessProperty);
コード例 #11
0
ファイル: FontElement.cs プロジェクト: jrockhub/maui
 static bool GetCancelEvents(BindableObject bindable) => (bool)bindable.GetValue(CancelEventsProperty);