菜单条中的图像 [英] Images in menustrips

查看:99
本文介绍了菜单条中的图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好

推荐答案

您应该自己绘制菜单项.
在下面的代码中,My.Resources.attach是资源中的图像.
这将仅显示覆盖菜单项整个区域的指定图像.

You should owner draw your menuitems.
In below code My.Resources.attach is the image in resources.
This will display just the image specified covering whole area of menuitem.

Private Sub ToolStripMenuItem1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles ToolStripMenuItem1.Paint
  DirectCast(sender, ToolStripMenuItem).DisplayStyle = ToolStripItemDisplayStyle.None
  e.Graphics.DrawImage(My.Resources.attach, 0, 0, e.ClipRectangle.Width, e.ClipRectangle.Height)
End Sub


这篇关于菜单条中的图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆