在你機(jī)器上沒問題那就是運(yùn)行環(huán)境的問題了 你發(fā)布的時(shí)候是不是把檢測(cè)到的依賴項(xiàng)全打包進(jìn)去啦?
創(chuàng)新互聯(lián)公司專注于西安網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供西安營(yíng)銷型網(wǎng)站建設(shè),西安網(wǎng)站制作、西安網(wǎng)頁(yè)設(shè)計(jì)、西安網(wǎng)站官網(wǎng)定制、成都小程序開發(fā)服務(wù),打造西安網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供西安網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。
1、將窗口的KeyPreview屬性設(shè)置為True
Me.KeyPreview = True
2、處理窗口的KeyDown事件
Sub MainFormKeyDown(sender As Object, e As KeyEventArgs)
Select Case e.KeyCode
Case Keys.Escape
Me.button1.PerformClick
Case Keys.Enter
Me.button2.PerformClick
End Select
End Sub
用標(biāo)簽,設(shè)一個(gè)背景圖片就是了,背景圖片用bmp畫圖就行。其實(shí)你完全可以用更精美的圖片。效果特好!
public Color col(string colorName)
{
Type colorType = typeof(Color);
PropertyInfo info = colorType.GetProperty(colorName, BindingFlags.Public | BindingFlags.Static);
if (infos == null)
{
//throw Exception
}
return(Color)info.GetValue(null, null);
}
是這個(gè)意思么?輸入“Red”, 返回Color.Red 區(qū)分大小寫