如何在vb.net中的表单上以48x48分辨率显示图标? 我查看了使用imagelist,但我不知道如何使用代码显示我添加到列表中的图像以及如何在表单上指定它的坐标。 我做了一些谷歌搜索,但没有一个例子真的显示我需要知道的。
答案 0 :(得分:7)
当你有支持alpha透明度的图像格式时,ImageList并不理想(至少它曾经是这种情况;我最近没有使用它们很多),所以你可能最好从文件中加载图标在磁盘上或从资源。如果从磁盘加载它,您可以使用此方法:
' Function for loading the icon from disk in 48x48 size '
Private Function LoadIconFromFile(ByVal fileName As String) As Icon
Return New Icon(fileName, New Size(48, 48))
End Function
' code for loading the icon into a PictureBox '
Dim theIcon As Icon = LoadIconFromFile("C:\path\file.ico")
pbIcon.Image = theIcon.ToBitmap()
theIcon.Dispose()
' code for drawing the icon on the form, at x=20, y=20 '
Dim g As Graphics = Me.CreateGraphics()
Dim theIcon As Icon = LoadIconFromFile("C:\path\file.ico")
g.DrawIcon(theIcon, 20, 20)
g.Dispose()
theIcon.Dispose()
更新:如果您希望将图标作为程序集中的嵌入资源,则可以更改LoadIconFromFile方法,使其看起来像这样:
Private Function LoadIconFromFile(ByVal fileName As String) As Icon
Dim result As Icon
Dim assembly As System.Reflection.Assembly = Me.GetType().Assembly
Dim stream As System.IO.Stream = assembly.GetManifestResourceStream((assembly.GetName().Name & ".file.ico"))
result = New Icon(stream, New Size(48, 48))
stream.Dispose()
Return result
End Function
答案 1 :(得分:2)
您希望图片框控件将图像放在表单上。
然后,您可以将Image属性设置为您希望显示的图像,即磁盘上的文件,图像列表或资源文件。
假设你有一个名为pct的图片框:
pct.Image = Image.FromFile("c:\Image_Name.jpg") 'file on disk
或
pct.Image = My.Resources.Image_Name 'project resources
或
pct.Image = imagelist.image(0) 'imagelist
答案 2 :(得分:0)
Me.Icon = Icon.FromHandle(DirectCast(ImgLs_ICONS.Images(0), Bitmap).GetHicon())
答案 3 :(得分:0)
您可以使用标签控件执行相同的操作。我用一个在图片框控件中的图像上画一个点。它可能比使用PictureBox的开销更小。
Dim label As Label = New Label()
label.Size = My.Resources.DefectDot.Size
label.Image = My.Resources.DefectDot ' Already an image so don't need ToBitmap
label.Location = New Point(40, 40)
DefectPictureBox.Controls.Add(label)
使用OnPaint方法可能是最好的方法。
Private Sub DefectPictureBox_Paint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles DefectPictureBox.Paint
e.Graphics.DrawIcon(My.Resources.MyDot, 20, 20)
End Sub