FileNameEditor 類別

定義

重要

此 API 不符合 CLS 規範。

提供使用者介面以選擇檔案名稱。

public ref class FileNameEditor : System::Drawing::Design::UITypeEditor
public class FileNameEditor : System.Drawing.Design.UITypeEditor
[System.CLSCompliant(false)]
public class FileNameEditor : System.Drawing.Design.UITypeEditor
type FileNameEditor = class
    inherit UITypeEditor
[<System.CLSCompliant(false)>]
type FileNameEditor = class
    inherit UITypeEditor
Public Class FileNameEditor
Inherits UITypeEditor
繼承
FileNameEditor
屬性

範例

以下程式碼範例使用 將 EditorAttributeFileNameEditor 屬性關聯。

public:
   [EditorAttribute(System::ComponentModel::Design::CollectionEditor::typeid,
      System::Drawing::Design::UITypeEditor::typeid)]
   property String^ testFilename 
   {
      String^ get()
      {
         return filename;
      }
      void set( String^ value )
      {
         filename = value;
      }
   }
private:
   String^ filename;
[EditorAttribute(typeof(System.Windows.Forms.Design.FileNameEditor), typeof(System.Drawing.Design.UITypeEditor))]
public string testFilename
{
    get
    {
        return filename;
    }
    set
    {
        filename = value;
    }
}
private string filename;
<EditorAttribute(GetType(System.Windows.Forms.Design.FileNameEditor), GetType(System.Drawing.Design.UITypeEditor))>  _
Public Property testFilename() As String
   Get
      Return filename
   End Get
   Set
      filename = value
   End Set
End Property
Private filename As String

備註

FileNameEditor 提供檔案選擇對話框,方便選擇與編輯檔案名稱。

給繼承者的注意事項

你可以繼承這個類別,為對話框提供自己的標題和檔案列表篩選器的副檔名。

建構函式

名稱 Description
FileNameEditor()

初始化 FileNameEditor 類別的新執行個體。

屬性

名稱 Description
IsDropDownResizable

會有一個值,指示下拉選單編輯器是否應該被使用者調整大小。

(繼承來源 UITypeEditor)

方法

名稱 Description
EditValue(IServiceProvider, Object)

使用方法指示 GetEditStyle() 的編輯器樣式編輯指定物件的值。

(繼承來源 UITypeEditor)
EditValue(ITypeDescriptorContext, IServiceProvider, Object)

使用方法提供的 GetEditStyle(ITypeDescriptorContext) 編輯器樣式編輯指定的物件。

Equals(Object)

判斷指定的物件是否等於目前的物件。

(繼承來源 Object)
GetEditStyle()

會得到方法中使用的 EditValue(IServiceProvider, Object) 編輯器風格。

(繼承來源 UITypeEditor)
GetEditStyle(ITypeDescriptorContext)

取得方法所 EditValue(ITypeDescriptorContext, IServiceProvider, Object) 使用的剪輯風格。

GetHashCode()

做為預設哈希函式。

(繼承來源 Object)
GetPaintValueSupported()

表示此編輯器是否支援繪製物件價值的表示。

(繼承來源 UITypeEditor)
GetPaintValueSupported(ITypeDescriptorContext)

表示指定的上下文是否支持在指定上下文中繪製物件價值的表示。

(繼承來源 UITypeEditor)
GetType()

取得目前實例的 Type

(繼承來源 Object)
InitializeDialog(OpenFileDialog)

建立檔案對話框時初始化。

MemberwiseClone()

建立目前 Object的淺層複本。

(繼承來源 Object)
PaintValue(Object, Graphics, Rectangle)

繪製指定物件價值在指定畫布上的表示。

(繼承來源 UITypeEditor)
PaintValue(PaintValueEventArgs)

使用指定的 PaintValueEventArgs繪製物件值的表示。

(繼承來源 UITypeEditor)
ToString()

傳回表示目前 物件的字串。

(繼承來源 Object)

適用於