Server/FormEditObject.Designer.cs
author StephaneLenclud
Tue, 30 Aug 2016 16:50:37 +0200
changeset 260 d44943088c67
parent 247 afdbe76ab03b
permissions -rw-r--r--
Adding user given name to EAR events and enabling User Events.
     1 namespace SharpDisplayManager
     2 {
     3     partial class FormEditObject<T>
     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.iComboBoxObjectType = new System.Windows.Forms.ComboBox();
    33             this.labelActionType = new System.Windows.Forms.Label();
    34             this.iButtonOk = 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.iButtonTest = new System.Windows.Forms.Button();
    39             this.iLabelBrief = new System.Windows.Forms.Label();
    40             this.iLabelDescription = new System.Windows.Forms.Label();
    41             this.SuspendLayout();
    42             // 
    43             // iComboBoxObjectType
    44             // 
    45             this.iComboBoxObjectType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
    46             | System.Windows.Forms.AnchorStyles.Right)));
    47             this.iComboBoxObjectType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
    48             this.iComboBoxObjectType.FormattingEnabled = true;
    49             this.iComboBoxObjectType.Location = new System.Drawing.Point(55, 52);
    50             this.iComboBoxObjectType.Name = "iComboBoxObjectType";
    51             this.iComboBoxObjectType.Size = new System.Drawing.Size(272, 21);
    52             this.iComboBoxObjectType.Sorted = true;
    53             this.iComboBoxObjectType.TabIndex = 18;
    54             this.iComboBoxObjectType.SelectedIndexChanged += new System.EventHandler(this.comboBoxActionType_SelectedIndexChanged);
    55             this.iComboBoxObjectType.Enter += new System.EventHandler(this.iComboBoxObjectType_Enter);
    56             this.iComboBoxObjectType.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.iComboBoxObjectType_KeyPress);
    57             this.iComboBoxObjectType.Leave += new System.EventHandler(this.iComboBoxObjectType_Leave);
    58             // 
    59             // labelActionType
    60             // 
    61             this.labelActionType.AutoSize = true;
    62             this.labelActionType.Location = new System.Drawing.Point(12, 55);
    63             this.labelActionType.Name = "labelActionType";
    64             this.labelActionType.Size = new System.Drawing.Size(37, 13);
    65             this.labelActionType.TabIndex = 20;
    66             this.labelActionType.Text = "Type :";
    67             // 
    68             // iButtonOk
    69             // 
    70             this.iButtonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    71             this.iButtonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
    72             this.iButtonOk.Location = new System.Drawing.Point(12, 157);
    73             this.iButtonOk.Name = "iButtonOk";
    74             this.iButtonOk.Size = new System.Drawing.Size(75, 23);
    75             this.iButtonOk.TabIndex = 21;
    76             this.iButtonOk.Text = "Ok";
    77             this.iButtonOk.UseVisualStyleBackColor = true;
    78             this.iButtonOk.Click += new System.EventHandler(this.buttonOk_Click);
    79             // 
    80             // buttonCancel
    81             // 
    82             this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    83             this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
    84             this.buttonCancel.Location = new System.Drawing.Point(93, 157);
    85             this.buttonCancel.Name = "buttonCancel";
    86             this.buttonCancel.Size = new System.Drawing.Size(75, 23);
    87             this.buttonCancel.TabIndex = 22;
    88             this.buttonCancel.Text = "Cancel";
    89             this.buttonCancel.UseVisualStyleBackColor = true;
    90             // 
    91             // iTableLayoutPanel
    92             // 
    93             this.iTableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
    94             | System.Windows.Forms.AnchorStyles.Left) 
    95             | System.Windows.Forms.AnchorStyles.Right)));
    96             this.iTableLayoutPanel.AutoSize = true;
    97             this.iTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
    98             this.iTableLayoutPanel.ColumnCount = 2;
    99             this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
   100             this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
   101             this.iTableLayoutPanel.Location = new System.Drawing.Point(15, 91);
   102             this.iTableLayoutPanel.Name = "iTableLayoutPanel";
   103             this.iTableLayoutPanel.RowCount = 2;
   104             this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
   105             this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
   106             this.iTableLayoutPanel.Size = new System.Drawing.Size(312, 46);
   107             this.iTableLayoutPanel.TabIndex = 23;
   108             // 
   109             // iButtonTest
   110             // 
   111             this.iButtonTest.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
   112             this.iButtonTest.Location = new System.Drawing.Point(252, 157);
   113             this.iButtonTest.Name = "iButtonTest";
   114             this.iButtonTest.Size = new System.Drawing.Size(75, 23);
   115             this.iButtonTest.TabIndex = 24;
   116             this.iButtonTest.Text = "Test";
   117             this.iButtonTest.UseVisualStyleBackColor = true;
   118             this.iButtonTest.Click += new System.EventHandler(this.buttonTest_Click);
   119             // 
   120             // iLabelBrief
   121             // 
   122             this.iLabelBrief.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
   123             | System.Windows.Forms.AnchorStyles.Right)));
   124             this.iLabelBrief.AutoSize = true;
   125             this.iLabelBrief.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
   126             this.iLabelBrief.Location = new System.Drawing.Point(12, 9);
   127             this.iLabelBrief.Name = "iLabelBrief";
   128             this.iLabelBrief.Size = new System.Drawing.Size(33, 13);
   129             this.iLabelBrief.TabIndex = 25;
   130             this.iLabelBrief.Text = "Brief";
   131             // 
   132             // iLabelDescription
   133             // 
   134             this.iLabelDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
   135             | System.Windows.Forms.AnchorStyles.Right)));
   136             this.iLabelDescription.AutoSize = true;
   137             this.iLabelDescription.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
   138             this.iLabelDescription.Location = new System.Drawing.Point(12, 31);
   139             this.iLabelDescription.Name = "iLabelDescription";
   140             this.iLabelDescription.Size = new System.Drawing.Size(60, 13);
   141             this.iLabelDescription.TabIndex = 26;
   142             this.iLabelDescription.Text = "Description";
   143             // 
   144             // FormEditObject
   145             // 
   146             this.AcceptButton = this.iButtonOk;
   147             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
   148             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
   149             this.AutoSize = true;
   150             this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
   151             this.CancelButton = this.buttonCancel;
   152             this.ClientSize = new System.Drawing.Size(339, 192);
   153             this.Controls.Add(this.iLabelDescription);
   154             this.Controls.Add(this.iLabelBrief);
   155             this.Controls.Add(this.iButtonTest);
   156             this.Controls.Add(this.buttonCancel);
   157             this.Controls.Add(this.iButtonOk);
   158             this.Controls.Add(this.labelActionType);
   159             this.Controls.Add(this.iComboBoxObjectType);
   160             this.Controls.Add(this.iTableLayoutPanel);
   161             this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
   162             this.MaximizeBox = false;
   163             this.MinimizeBox = false;
   164             this.Name = "FormEditObject";
   165             this.Text = "Edit object";
   166             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormEditObject_FormClosing);
   167             this.Load += new System.EventHandler(this.FormEditAction_Load);
   168             this.ResumeLayout(false);
   169             this.PerformLayout();
   170 
   171         }
   172 
   173         #endregion
   174 
   175         private System.Windows.Forms.ComboBox iComboBoxObjectType;
   176         private System.Windows.Forms.Label labelActionType;
   177         private System.Windows.Forms.Button iButtonOk;
   178         private System.Windows.Forms.Button buttonCancel;
   179         private System.Windows.Forms.TableLayoutPanel iTableLayoutPanel;
   180         private System.Windows.Forms.ToolTip toolTip;
   181         private System.Windows.Forms.Button iButtonTest;
   182         private System.Windows.Forms.Label iLabelBrief;
   183         private System.Windows.Forms.Label iLabelDescription;
   184     }
   185 }