C#根據(jù)鼠標(biāo)位置獲取控件名稱,該怎么處理
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
以button控件舉例,button控件增加兩個(gè)事件,MouseEnter、MouseLeave事件,代碼如下。 private void button1_MouseEnter( object sender, EventArgs e) { label1.Text = ((Control)sender).Text; } private void button1_MouseLeave( object sender, EventArgs e) { label1.Text = "鼠標(biāo)移出去了" ; } 該文章在 2017/5/2 16:44:29 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |