カスタム コンポーネントにアイコンを追加して、ツールボックスに表示するにはどうすればよいですか? vb で設計されたコンポーネントがありますが、最初に dll または ActiveX を作成する必要がありますか? (私はまだ開発中なので好まない)
前もって感謝します、
// [ToolboxBitmap(typeof(TextBox))] // set default icons
[ToolboxBitmap(@"C:\Documents and Settings\Joe\MyPics\myImage.bmp")] // set own icons
例オーバーライドテキストボックス:
private bool IsNum = true;
[ToolboxBitmap(typeof(TextBox))]
[PropertyTab("IsNumaric")]
[DisplayName("IsNumaricTextBox")]
[Category("EmsoftBehaviors")]
[Description("If this is 'True' then textbox accept only numbers")]
public bool IsNumaricTextBox
{
set
{
IsNum = value;
}
get
{
return IsNum;
}
}