0
我正在製作一個自定義列表框(用於緊湊框架)。讓我的事件顯示在屬性窗口中
我做了一個事件(OnDrawItem)。我想知道如何讓我的自定義事件顯示在Visual Studio的屬性窗口的事件列表中。
我使用C#和Visual Studio 2008
這是我與事件類的一個示例:
class OwnerDrawnListBox<T> : System.Windows.Forms.Control
{
// Other List Box things
public DrawItemEventHandler DrawItemEventHandler { get; set; }
public OwnerDrawnListBox()
{
// ListBox init stuff
}
// Other ListBox Stuff
}
這樣做!謝謝。 – Vaccano 2010-01-05 00:18:06