Ejemplo n.º 1
0
        private void PendingBoxXControl_Cancel(object sender, EventArgs e)
        {
            var args = new PendingBoxCancellingEventArgs();

            UserCancelling?.Invoke(null, args);
            if (args.Cancel)
            {
                return;
            }
            Close();
        }
Ejemplo n.º 2
0
 public void RaiseCancellingEvent(object sender, PendingBoxCancellingEventArgs e)
 {
     Cancelling?.Invoke(this, e);
 }