如何将图片用于按钮和图片框?
我有一张 jpg
格式和大小 765X368
的图片。
我需要在表单上使用这张图片作为按钮和图片框。
当我用于 pictureBox 时,我使用 Sizemode = StretchImage
并且我认为它非常好,但是当我将它用于我的按钮时,它又大又糟糕!
当我将图片加载到按钮时,如何缩小该图片(自动)?
I have a picture in jpg
format and size 765X368
.
I need to use this picture for button and pictureBox on my form.
When I use for pictureBox I use Sizemode = StretchImage
and I see it excellent, but when I use it for my button, it's very big and bad!!!
How I can make smaller this picture (automatic) when I load it to my button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在按钮中使用图像之前即时调整图像大小。请参阅代码示例:http://snippets.dzone.com/posts/show/4336 .
You could resize your image on the fly before using it in your button. See a code sample at http://snippets.dzone.com/posts/show/4336 .
尝试按钮的 SizeMode 的其他选项。一般来说,最好有两个不同的图像用于完整视图和按钮。
关于按钮的一个更棘手的事情是,它们往往......将图片向左或向右移动一点,而这一切看起来都不是您想要的方式。
Experiment with other options of SizeMode for button. In general it's always better to have two different images for a full view and for a button.
One more tricky thing about buttons is that they tend to... move the picture a little bit to the left or to the right, and it all looks not the way you would like it.