Server/FormEditAction.Designer.cs
author Stephane Lenclud
Sun, 24 Jul 2016 13:30:08 +0200
changeset 212 1a0791daa243
child 219 99c407831232
permissions -rw-r--r--
Actions persistence working.
     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.comboBoxActionType = new System.Windows.Forms.ComboBox();
    32             this.labelActionType = new System.Windows.Forms.Label();
    33             this.buttonOk = new System.Windows.Forms.Button();
    34             this.buttonCancel = new System.Windows.Forms.Button();
    35             this.SuspendLayout();
    36             // 
    37             // comboBoxActionType
    38             // 
    39             this.comboBoxActionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
    40             this.comboBoxActionType.FormattingEnabled = true;
    41             this.comboBoxActionType.Location = new System.Drawing.Point(55, 12);
    42             this.comboBoxActionType.Name = "comboBoxActionType";
    43             this.comboBoxActionType.Size = new System.Drawing.Size(333, 21);
    44             this.comboBoxActionType.TabIndex = 18;
    45             // 
    46             // labelActionType
    47             // 
    48             this.labelActionType.AutoSize = true;
    49             this.labelActionType.Location = new System.Drawing.Point(12, 15);
    50             this.labelActionType.Name = "labelActionType";
    51             this.labelActionType.Size = new System.Drawing.Size(37, 13);
    52             this.labelActionType.TabIndex = 20;
    53             this.labelActionType.Text = "Type :";
    54             // 
    55             // buttonOk
    56             // 
    57             this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
    58             this.buttonOk.Location = new System.Drawing.Point(12, 55);
    59             this.buttonOk.Name = "buttonOk";
    60             this.buttonOk.Size = new System.Drawing.Size(75, 23);
    61             this.buttonOk.TabIndex = 21;
    62             this.buttonOk.Text = "Ok";
    63             this.buttonOk.UseVisualStyleBackColor = true;
    64             this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
    65             // 
    66             // buttonCancel
    67             // 
    68             this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
    69             this.buttonCancel.Location = new System.Drawing.Point(93, 55);
    70             this.buttonCancel.Name = "buttonCancel";
    71             this.buttonCancel.Size = new System.Drawing.Size(75, 23);
    72             this.buttonCancel.TabIndex = 22;
    73             this.buttonCancel.Text = "Cancel";
    74             this.buttonCancel.UseVisualStyleBackColor = true;
    75             // 
    76             // FormEditAction
    77             // 
    78             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    79             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    80             this.ClientSize = new System.Drawing.Size(400, 86);
    81             this.Controls.Add(this.buttonCancel);
    82             this.Controls.Add(this.buttonOk);
    83             this.Controls.Add(this.labelActionType);
    84             this.Controls.Add(this.comboBoxActionType);
    85             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
    86             this.MaximizeBox = false;
    87             this.MinimizeBox = false;
    88             this.Name = "FormEditAction";
    89             this.Text = "Edit action";
    90             this.Load += new System.EventHandler(this.FormEditAction_Load);
    91             this.Validating += new System.ComponentModel.CancelEventHandler(this.FormEditAction_Validating);
    92             this.ResumeLayout(false);
    93             this.PerformLayout();
    94 
    95         }
    96 
    97         #endregion
    98 
    99         private System.Windows.Forms.ComboBox comboBoxActionType;
   100         private System.Windows.Forms.Label labelActionType;
   101         private System.Windows.Forms.Button buttonOk;
   102         private System.Windows.Forms.Button buttonCancel;
   103     }
   104 }