Inheritance: System.EventArgs
Exemplo n.º 1
0
        protected virtual void OnCreateDialog(NiTaskDialogEventArgs e)
        {
            var handler = CreateDialog;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 2
0
        protected virtual void OnHelp(NiTaskDialogEventArgs e)
        {
            var handler = Help;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 3
0
        protected virtual void OnDestroy(NiTaskDialogEventArgs e)
        {
            var handler = Destroy;

            if (handler != null)
            {
                handler(this, e);
            }
        }