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

            if (handler != null)
            {
                handler(this, e);
            }
        }
 public void OnCustomGridCreate(CustomGridCreateEventArgs e) {
     EventHandler<CustomGridCreateEventArgs> handler = CustomGridCreate;
     if (handler != null) handler(this, e);
 }
示例#3
0
        public void OnCustomGridCreate(CustomGridCreateEventArgs e)
        {
            EventHandler <CustomGridCreateEventArgs> handler = CustomGridCreate;

            handler?.Invoke(this, e);
        }