0
我正在嘗試添加一個簡單的工具條,但是我無法將它顯示在屏幕上 這裏是所有與之相關的代碼。我有沒有留下什麼?未能顯示工具條
場:
protected ToolStrip _commandToolStrip = new ToolStrip();
在構造
FillToolBar();
_commandToolStrip.Visible = true;
_commandToolStrip.BringToFront();
方法:
private void FillToolBar()
{
_commandToolStrip.Dock = DockStyle.Right;
_commandToolStrip.Visible = true;
ToolStripButton commandButton = new ToolStripButton("test", convertIconToImage((System.Drawing.Icon)(resources.GetObject("$this.Icon"))), Command_NextWebPattern_Execute);
_commandToolStrip.Items.Add(commandButton);
}
private Image convertIconToImage(Icon icon)
{
Bitmap bm = icon.ToBitmap();
Image convertedImage = bm;
return convertedImage;
}
我似乎無法找到任何理由爲什麼它不顯示。
你在哪裏添加它到你的表單?即'this.Controls.add(_commandToolStrip)' – Adam