0

在工具条状态标签中,我正在添加图像并显示它,如下所示。

案例1:设置图像列表大小[不工作]

案例2:设置标签的大小。[不工作]

在上述两种情况下,大小都没有得到反映。

StatusStrip statusStrip = new StatusStrip();
//Set the size of the status bar
statusStrip.AutoSize = false;

ImageList imgList = new ImageList(); 

...Add resource images to image list

imgList.ImageSize = new System.Drawing.Size(50, 50);

//Set the images on the status strip
ToolStripStatusLabel add = new ToolStripStatusLabel();
add.Image = jobImgList.Images[0];

//Set auto size to false, so specify the size
add.AutoSize = false;
add.Size = new System.Drawing.Size(50, 50);

statusStrip.Items.Add(add);

除了将 AutoSize 设置为 false 之外,还有其他需要更改的属性吗?

4

1 回答 1

0

解决方案就这么简单!

statusStrip.ImageScalingSize = new Size(40, 40);

参考: 如何增加工具条上按钮的大小?

于 2013-09-27T10:26:43.847 回答