C#根據鼠標位置獲取控件名稱,該怎么處理
當前位置:點晴教程→知識管理交流
→『 技術文檔交流 』
以button控件舉例,button控件增加兩個事件,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 = "鼠標移出去了" ; } 該文章在 2017/5/2 16:44:29 編輯過 |
關鍵字查詢
相關文章
正在查詢... |