UITypeEditorEditStyle 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定識別項,指出 UITypeEditor 的值編輯樣式。
public enum class UITypeEditorEditStyle
public enum UITypeEditorEditStyle
type UITypeEditorEditStyle =
Public Enum UITypeEditorEditStyle
- 繼承
欄位
DropDown | 3 | 顯示下拉式箭號按鈕,並將使用者介面 (UI) 裝載在下拉式對話方塊中。 |
Modal | 2 | 顯示省略 (...) 按鈕,以啟動強制回應 (Modal) 對話方塊 (會在繼續執行程式前要求使用者輸入),或啟動非強制回應 (Modeless) 對話方塊 (會保留在畫面上且可於任何時候使用,但允許其他使用者活動)。 |
None | 1 | 沒有提供互動使用者介面 (UI) 元件。 |
範例
下列程式代碼範例示範如何使用 UITypeEditorEditStyle 來指定自定義 UITypeEditor的樣式。 此程式代碼範例是針對 類別提供的較大範例的 DocumentDesigner 一部分。
public override UITypeEditorEditStyle GetEditStyle(
System.ComponentModel.ITypeDescriptorContext context)
{
return UITypeEditorEditStyle.DropDown;
}
Public Overrides Function GetEditStyle( _
ByVal context As System.ComponentModel.ITypeDescriptorContext) _
As UITypeEditorEditStyle
Return UITypeEditorEditStyle.DropDown
End Function