您好,登錄后才能下訂單哦!
這篇文章給大家介紹WinForm中怎么設置用戶控件的按鈕事件,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
項目中需要對一個DataGridView控件進行類似于Excel查找的功能,之前是使用的DevExpress里面的DataGrid,用起來倒是很方便,它的列頭可以和Excel一樣進行隨意的篩選,但是那個是收費的東東,我用了幾天破解版的,擔心以后會有影響所以還是決定換掉它,Visual Studio自帶的DataGridView跟DevExpress里面的DataGrid相比確實相差太遠了,樣式不好看不說,功能上也欠缺了很多,為了滿足用戶的需求只得做一個查找定位的功能出來勉強滿足一下用戶的需求,
using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; namespace MES.Common { public partial class UserControlFind : UserControl { public UserControlFind() { InitializeComponent(); } //增加 一個事件,項目里面用到這個控件的時候就可以使用這個事件了。 [EditorBrowsable(EditorBrowsableState.Always)] [Browsable(true)] public event EventHandler U_Click; public void btnFindValue_Click(object sender, EventArgs e) { if (U_Click != null) U_Click(this, e); } } }
UserControlFind u = new UserControlFind(); //Find_Grid就是用戶控件里面的查找方法,這里直接調用它并傳入一個字符串和一個DataGridView u.Find_Grid(userControlFind_OP.txtValue.Text.Trim(), this.dgv);
如果需要操作用戶控件里面其它控件,那么該控件的Modifiers屬性需要設置為Public才可以。
效果如圖:
關于WinForm中怎么設置用戶控件的按鈕事件就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。