0

カスタム コンポーネントにアイコンを追加して、ツールボックスに表示するにはどうすればよいですか? vb で設計されたコンポーネントがありますが、最初に dll または ActiveX を作成する必要がありますか? (私はまだ開発中なので好まない)

前もって感謝します、

4

1 に答える 1

1
 // [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;
            }
        }
于 2012-12-09T03:38:45.673 に答える