Inheritance: System.EventArgs
示例#1
0
文件: Form.cs 项目: yzwbrian/SystemEx
        protected virtual void OnBrowseButtonClick(BrowseButtonEventArgs e)
        {
            var ev = BrowseButtonClick;

            if (ev != null)
            {
                ev(this, e);
            }
        }
示例#2
0
        protected virtual void OnBrowseButtonClick(BrowseButtonEventArgs e)
        {
            var ev = BrowseButtonClick;

            if (ev != null)
                ev(this, e);
        }