RadioMenuFlyoutItem.IsChecked 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定是否已檢查 RadioMenuFlyoutItem。
public:
property bool IsChecked { bool get(); void set(bool value); };
bool IsChecked();
void IsChecked(bool value);
public bool IsChecked { get; set; }
var boolean = radioMenuFlyoutItem.isChecked;
radioMenuFlyoutItem.isChecked = boolean;
Public Property IsChecked As Boolean
屬性值
Boolean
bool
範例
RadioMenuFlyoutItem 可以新增至 MenuBarItem、 MenuFlyout 或 MenuFlyoutSubItem。 下列範例顯示三個單選功能表飛出視窗專案做為級聯功能表飛出視窗的內容。 已核取 [中圖示] 專案。
<MenuFlyout>
<MenuFlyoutSubItem Text="View">
<RadioMenuFlyoutItem Text="Small icons"/>
<RadioMenuFlyoutItem Text="Medium icons" IsChecked="True"/>
<RadioMenuFlyoutItem Text="Large icons"/>
</MenuFlyoutSubItem>
</MenuFlyout>