Beispiel #1
0
 public static void Exit()
 {
     _cd?.Close();
     _cd.Dispose();
 }
Beispiel #2
0
 public static WinFormItem StdButtons(string OKCaption = "&Запись", string CancelCaption = "&Отмена") =>
 new WinFormItem("FormRowsBottomPanel",
                 new WinFormItem("StdButtonsCells",
                                 new WinFormItem("OK")
 {
     PresentationType = typeof(Button),
     Value            = OKCaption,
     CellAddress      = new Pair <int>(1, 0),
     ControlTrigger   = (i, c) =>
     {
         Button btn = (c as Button);
         btn.Height = WinForm.ButtonHeight;
         btn.Width  = WinForm.ButtonWidth;
         btn.Click += (o, e) =>
         {
             Button b = (o as Button);
             if (b.GetSTDAction("click"))
             {
                 WinForm parent = b.Tag().WinForm;
                 if (!parent.ContinuousEditing)
                 {
                     parent.DialogResult = DialogResult.OK;
                     if (!parent.Modal)
                     {
                         parent.Close();
                     }
                 }
             }
         };
         btn.Tag().WinForm.AcceptButton = btn;
     }
 },
                                 new WinFormItem("Cancel")
 {
     PresentationType = typeof(Button),
     Value            = CancelCaption,
     CellAddress      = new Pair <int>(2, 0),
     ControlTrigger   = (i, c) =>
     {
         Button btn = (c as Button);
         btn.Height = WinForm.ButtonHeight;
         btn.Width  = WinForm.ButtonWidth;
         btn.Click += (o, e) =>
         {
             Button b = (o as Button);
             if (b.GetSTDAction("click"))
             {
                 WinForm parent      = b.Tag().WinForm;
                 parent.DialogResult = DialogResult.Cancel;
                 if (!parent.Modal)
                 {
                     parent.Close();
                 }
             }
         };
         btn.Tag().WinForm.CancelButton = btn;
     }
 })
 {
     PresentationType = typeof(TableLayoutPanel),
     CellsSize        = new Pair <int>(3, 1),
     ControlTrigger   = (i, c) =>
     {
         TableLayoutPanel cells = (c as TableLayoutPanel);
         cells.Dock             = DockStyle.Bottom;
         cells.CellBorderStyle  = WinForm.CellBorderStyle;
         cells.ColumnStyles[0]  = new ColumnStyle(SizeType.Percent, 100);
         cells.ColumnStyles[1]  = new ColumnStyle(SizeType.Absolute, WinForm.ButtonWidth);
         cells.ColumnStyles[2]  = new ColumnStyle(SizeType.Absolute, WinForm.ButtonWidth);
         cells.RowStyles[0]     = new RowStyle(SizeType.Absolute, WinForm.ButtonHeight);
         cells.ControlAdded    += (ctrl, e) =>
         {
             (ctrl as TableLayoutPanel)?.RowStyles.Add(new RowStyle(SizeType.AutoSize, 100));
         };
     }
 })
 {
     PresentationType = typeof(TableLayoutPanel),
     CellsSize        = new Pair <int>(1, 1),
     ControlTrigger   = (i, c) =>
     {
         TableLayoutPanel tlpRows = (c as TableLayoutPanel);
         tlpRows.Dock            = DockStyle.Bottom;
         tlpRows.CellBorderStyle = WinForm.CellBorderStyle;
         tlpRows.ColumnCount     = 1;
         tlpRows.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100));
         tlpRows.ControlAdded += (ctrl, e) =>
         {
             (ctrl as TableLayoutPanel)?.RowStyles.Add(new RowStyle(SizeType.AutoSize, 100));
         };
         tlpRows.Height = WinForm.ButtonHeight + 20;
     }
 };