1

我没有为面板、对接或锚而烦恼。我只是将一个 ToolBar 控件(不是 ToolStrip)拼凑在一起,似乎无法调整它的大小。

System.Windows.Forms.ToolBar tb = new System.Windows.Forms.ToolBar();

// Reports 292x28 (approx) if I check width and height
// Basically the width of the form and I assume a default height
tb.Size = new System.Drawing.Size(195, 48);


// Reports 48x48, but does not actually create buttons of that size
// (It reports 48x48 because I'm retrieving 48x48 icons from a ResourceManager (resx))
tb.ButtonSize = new System.Drawing.Size(48, 48); // 

我发现让我的 ToolBar 更高的最接近的事情是:

http://bytes.com/topic/c-sharp/answers/241614-changeing-height-toolbar-button

虽然它比较陈旧。我不明白。ToolBarButtons 没有高度、宽度或大小属性。

我正在使用 SharpDevelop,在 Vista 上完全手动编码,以及所有 .NET 框架。

编辑:

这是我目前使用的确切代码。

#region ImageList/Toolbar
ImageList toolbarImages = new ImageList();
Image wizardToolbarImage = (Bitmap) rm.GetObject("wizard");
Image optionsToolbarImage = (Bitmap) rm.GetObject("configure");
toolbarImages.Images.Add(wizardToolbarImage);
toolbarImages.Images.Add(optionsToolbarImage);      

ToolBar toolbarMain = new ToolBar();
toolbarMain.Size = new Size(195, 25); // no effect
ToolBarButton wizardToolbarButton = new ToolBarButton();
ToolBarButton optionsToolbarButton = new ToolBarButton();
wizardToolbarButton.ImageIndex = 0;
wizardToolbarButton.ToolTipText = "Wizard!";
optionsToolbarButton.ImageIndex = 1;
optionsToolbarButton.ToolTipText = "Options!";
toolbarMain.Buttons.Add(wizardToolbarButton);   
toolbarMain.Buttons.Add(optionsToolbarButton);

toolbarMain.Appearance = ToolBarAppearance.Normal;
toolbarMain.ButtonSize = new System.Drawing.Size(48, 48); // no effect
toolbarMain.ImageList = toolbarImages;
toolbarMain.ButtonClick += new ToolBarButtonClickEventHandler(toolbarMain_Click);

Controls.Add(toolbarMain);
#endregion
4

2 回答 2

1

在我编写的几乎所有 winforms 应用程序中,无论语言或框架如何,工具栏只能通过使用更大的图标来提高。

于 2009-10-05T03:20:32.317 回答
0

您还可以将工具条放在 Panel 中,并将工具条的 Dock 属性设置为 Fill。然后您可以将面板调整为您需要的任何大小。

于 2011-04-15T22:06:14.770 回答