6
我想在我的ToolStrip中添加一個TrackBar。我發現這個代碼在網上的某個地方,但我不知道如何使用它,因爲它應該被編譯也許?在ToolStrip中添加一個TrackBar
代碼
/// <summary>
/// Adds trackbar to toolstrip stuff
/// </summary>
[
ToolStripItemDesignerAvailability
(ToolStripItemDesignerAvailability.ToolStrip | ToolStripItemDesignerAvailability.StatusStrip)
]
public class ToolStripTraceBarItem : ToolStripControlHost
{
public ToolStripTraceBarItem(): base(new TrackBar())
{
}
}
任何提示將appriciated!