visual basic 2012如何更改图标
visual basic 2012 how to change icon
我希望能够在程序运行时更改图标(多次,具体取决于发生的情况)。我该怎么做:
我已经尝试 "me.icon = image("icon location")" 但在将图像转换为图标时出现错误。
下面的代码会帮助你
Dim img As New System.Drawing.Icon("path to file")
Me.Icon = img
我希望能够在程序运行时更改图标(多次,具体取决于发生的情况)。我该怎么做:
我已经尝试 "me.icon = image("icon location")" 但在将图像转换为图标时出现错误。
下面的代码会帮助你
Dim img As New System.Drawing.Icon("path to file")
Me.Icon = img