Server/FormEditAction.Designer.cs
author StephaneLenclud
Tue, 26 Jul 2016 11:51:50 +0200
changeset 219 99c407831232
parent 211 96f8b4dc4300
child 220 e5910d7b6a81
permissions -rw-r--r--
Basis for action property edition support.
     1 namespace SharpDisplayManager
     2 {
     3     partial class FormEditAction
     4     {
     5         /// <summary>
     6         /// Required designer variable.
     7         /// </summary>
     8         private System.ComponentModel.IContainer components = null;
     9 
    10         /// <summary>
    11         /// Clean up any resources being used.
    12         /// </summary>
    13         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
    14         protected override void Dispose(bool disposing)
    15         {
    16             if (disposing && (components != null))
    17             {
    18                 components.Dispose();
    19             }
    20             base.Dispose(disposing);
    21         }
    22 
    23         #region Windows Form Designer generated code
    24 
    25         /// <summary>
    26         /// Required method for Designer support - do not modify
    27         /// the contents of this method with the code editor.
    28         /// </summary>
    29         private void InitializeComponent()
    30         {
    31             this.components = new System.ComponentModel.Container();
    32             this.comboBoxActionType = new System.Windows.Forms.ComboBox();
    33             this.labelActionType = new System.Windows.Forms.Label();
    34             this.buttonOk = new System.Windows.Forms.Button();
    35             this.buttonCancel = new System.Windows.Forms.Button();
    36             this.iTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
    37             this.toolTip = new System.Windows.Forms.ToolTip(this.components);
    38             this.SuspendLayout();
    39             // 
    40             // comboBoxActionType
    41             // 
    42             this.comboBoxActionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
    43             this.comboBoxActionType.FormattingEnabled = true;
    44             this.comboBoxActionType.Location = new System.Drawing.Point(55, 12);
    45             this.comboBoxActionType.Name = "comboBoxActionType";
    46             this.comboBoxActionType.Size = new System.Drawing.Size(333, 21);
    47             this.comboBoxActionType.TabIndex = 18;
    48             this.comboBoxActionType.SelectedIndexChanged += new System.EventHandler(this.comboBoxActionType_SelectedIndexChanged);
    49             // 
    50             // labelActionType
    51             // 
    52             this.labelActionType.AutoSize = true;
    53             this.labelActionType.Location = new System.Drawing.Point(12, 15);
    54             this.labelActionType.Name = "labelActionType";
    55             this.labelActionType.Size = new System.Drawing.Size(37, 13);
    56             this.labelActionType.TabIndex = 20;
    57             this.labelActionType.Text = "Type :";
    58             // 
    59             // buttonOk
    60             // 
    61             this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    62             this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
    63             this.buttonOk.Location = new System.Drawing.Point(12, 347);
    64             this.buttonOk.Name = "buttonOk";
    65             this.buttonOk.Size = new System.Drawing.Size(75, 23);
    66             this.buttonOk.TabIndex = 21;
    67             this.buttonOk.Text = "Ok";
    68             this.buttonOk.UseVisualStyleBackColor = true;
    69             this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
    70             // 
    71             // buttonCancel
    72             // 
    73             this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    74             this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
    75             this.buttonCancel.Location = new System.Drawing.Point(93, 347);
    76             this.buttonCancel.Name = "buttonCancel";
    77             this.buttonCancel.Size = new System.Drawing.Size(75, 23);
    78             this.buttonCancel.TabIndex = 22;
    79             this.buttonCancel.Text = "Cancel";
    80             this.buttonCancel.UseVisualStyleBackColor = true;
    81             // 
    82             // iTableLayoutPanel
    83             // 
    84             this.iTableLayoutPanel.ColumnCount = 2;
    85             this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
    86             this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
    87             this.iTableLayoutPanel.Location = new System.Drawing.Point(15, 50);
    88             this.iTableLayoutPanel.Name = "iTableLayoutPanel";
    89             this.iTableLayoutPanel.RowCount = 2;
    90             this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
    91             this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
    92             this.iTableLayoutPanel.Size = new System.Drawing.Size(373, 114);
    93             this.iTableLayoutPanel.TabIndex = 23;
    94             // 
    95             // FormEditAction
    96             // 
    97             this.AcceptButton = this.buttonOk;
    98             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    99             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
   100             this.CancelButton = this.buttonCancel;
   101             this.ClientSize = new System.Drawing.Size(400, 382);
   102             this.Controls.Add(this.iTableLayoutPanel);
   103             this.Controls.Add(this.buttonCancel);
   104             this.Controls.Add(this.buttonOk);
   105             this.Controls.Add(this.labelActionType);
   106             this.Controls.Add(this.comboBoxActionType);
   107             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
   108             this.MaximizeBox = false;
   109             this.MinimizeBox = false;
   110             this.Name = "FormEditAction";
   111             this.Text = "Edit action";
   112             this.Load += new System.EventHandler(this.FormEditAction_Load);
   113             this.Validating += new System.ComponentModel.CancelEventHandler(this.FormEditAction_Validating);
   114             this.ResumeLayout(false);
   115             this.PerformLayout();
   116 
   117         }
   118 
   119         #endregion
   120 
   121         private System.Windows.Forms.ComboBox comboBoxActionType;
   122         private System.Windows.Forms.Label labelActionType;
   123         private System.Windows.Forms.Button buttonOk;
   124         private System.Windows.Forms.Button buttonCancel;
   125         private System.Windows.Forms.TableLayoutPanel iTableLayoutPanel;
   126         private System.Windows.Forms.ToolTip toolTip;
   127     }
   128 }