コード例 #1
0
        public void OnCustomGridCreate(CustomGridCreateEventArgs e)
        {
            EventHandler <CustomGridCreateEventArgs> handler = CustomGridCreate;

            if (handler != null)
            {
                handler(this, e);
            }
        }
コード例 #2
0
ファイル: XpandGridListEditor.cs プロジェクト: krazana/eXpand
 public void OnCustomGridCreate(CustomGridCreateEventArgs e) {
     EventHandler<CustomGridCreateEventArgs> handler = CustomGridCreate;
     if (handler != null) handler(this, e);
 }