private bool showBrowseButton;
[Browsable(true)]
[EditorBrowsable(EditorBrowsableState.Always)]
[DefaultValue(false)]
[Category(“Appearance”)]
[Description(“Show a button in each cell for browsing for files.”)]
public bool ShowBrowseButton
{
get { return showBrowseButton; }
set
{
showBrowseButton = value;
}
}
เจ้า
[Browsable(true)]
[EditorBrowsable(EditorBrowsableState.Always)]
[DefaultValue(false)]
[Category(“Appearance”)]
[Description(“Show a button in each cell for browsing for files.”)]
เมื่อวานนั่งแคะแกะเกามา เหมือนว่าเป็น detail ของ Custom Properties ใน control ที่เราสร้าง
แทนที่เราจะสร้าง แบบบ้านๆ
Code (C#)
private bool showBrowseButton;
public bool ShowBrowseButton
{
get { return showBrowseButton; }
set
{
showBrowseButton = value;
}
}
เราก็เพิ่มรายละเอียดให้กับมันด้วย Code (C#)
private bool showBrowseButton;
[Browsable(true)]
[EditorBrowsable(EditorBrowsableState.Always)]
[DefaultValue(false)]
[Category(“Appearance”)]
[Description(“Show a button in each cell for browsing for files.”)]
public bool ShowBrowseButton
{
get { return showBrowseButton; }
set
{
showBrowseButton = value;
}
}