共用方式為


RibbonComboBox.IsEditable 屬性

定義

取得或設定值,指出是否可以編輯下拉式方塊的內容。

public:
 property bool IsEditable { bool get(); void set(bool value); };
public bool IsEditable { get; set; }
member this.IsEditable : bool with get, set
Public Property IsEditable As Boolean

屬性值

如果可以編輯下拉式方塊的內容則為 true,否則為 false。 已註冊的預設值是 false。 如需可能會影響該值的相關詳細資訊,請參閱 相依性屬性值優先順序

範例

下列範例顯示標記,以建立具有三個可用專案的下拉式方塊。

<ribbon:RibbonComboBox Label="1" 
                  SmallImageSource="Images/RightArrowShort_Green16.png"
                  SelectionBoxWidth="62"
                  VerticalAlignment="Center" 
                  IsEditable="True" >
    <ribbon:RibbonGallery SelectedValue="Green"
                          SelectedValuePath="Content"
                          MaxColumnCount="1">
        <ribbon:RibbonGalleryCategory>
            <ribbon:RibbonGalleryItem Content="Green" Foreground="Green" />
            <ribbon:RibbonGalleryItem Content="Blue" Foreground="Blue" />
            <ribbon:RibbonGalleryItem Content="Orange" Foreground="Orange" />
        </ribbon:RibbonGalleryCategory>
    </ribbon:RibbonGallery>
</ribbon:RibbonComboBox>

備註

相依性屬性資訊

識別碼欄位 IsEditableProperty
設定為 的中繼資料屬性 true

適用於