在工具条状态标签中,我正在添加图像并显示它,如下所示。
案例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 之外,还有其他需要更改的属性吗?