Server/FormEditObject.Designer.cs
author StephaneLenclud
Mon, 06 Mar 2017 15:11:27 +0100
changeset 282 29b4bdeda281
parent 247 afdbe76ab03b
permissions -rw-r--r--
Published v1.4.7.0
Adding back runtime dependencies.
StephaneLenclud@231
     1
namespace SharpDisplayManager
StephaneLenclud@231
     2
{
StephaneLenclud@231
     3
    partial class FormEditObject<T>
StephaneLenclud@231
     4
    {
StephaneLenclud@231
     5
        /// <summary>
StephaneLenclud@231
     6
        /// Required designer variable.
StephaneLenclud@231
     7
        /// </summary>
StephaneLenclud@231
     8
        private System.ComponentModel.IContainer components = null;
StephaneLenclud@231
     9
StephaneLenclud@231
    10
        /// <summary>
StephaneLenclud@231
    11
        /// Clean up any resources being used.
StephaneLenclud@231
    12
        /// </summary>
StephaneLenclud@231
    13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
StephaneLenclud@231
    14
        protected override void Dispose(bool disposing)
StephaneLenclud@231
    15
        {
StephaneLenclud@231
    16
            if (disposing && (components != null))
StephaneLenclud@231
    17
            {
StephaneLenclud@231
    18
                components.Dispose();
StephaneLenclud@231
    19
            }
StephaneLenclud@231
    20
            base.Dispose(disposing);
StephaneLenclud@231
    21
        }
StephaneLenclud@231
    22
StephaneLenclud@231
    23
        #region Windows Form Designer generated code
StephaneLenclud@231
    24
StephaneLenclud@231
    25
        /// <summary>
StephaneLenclud@231
    26
        /// Required method for Designer support - do not modify
StephaneLenclud@231
    27
        /// the contents of this method with the code editor.
StephaneLenclud@231
    28
        /// </summary>
StephaneLenclud@231
    29
        private void InitializeComponent()
StephaneLenclud@231
    30
        {
StephaneLenclud@231
    31
            this.components = new System.ComponentModel.Container();
StephaneLenclud@247
    32
            this.iComboBoxObjectType = new System.Windows.Forms.ComboBox();
StephaneLenclud@231
    33
            this.labelActionType = new System.Windows.Forms.Label();
StephaneLenclud@247
    34
            this.iButtonOk = new System.Windows.Forms.Button();
StephaneLenclud@231
    35
            this.buttonCancel = new System.Windows.Forms.Button();
StephaneLenclud@231
    36
            this.iTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
StephaneLenclud@231
    37
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
StephaneLenclud@247
    38
            this.iButtonTest = new System.Windows.Forms.Button();
StephaneLenclud@247
    39
            this.iLabelBrief = new System.Windows.Forms.Label();
StephaneLenclud@247
    40
            this.iLabelDescription = new System.Windows.Forms.Label();
StephaneLenclud@231
    41
            this.SuspendLayout();
StephaneLenclud@231
    42
            // 
StephaneLenclud@247
    43
            // iComboBoxObjectType
StephaneLenclud@231
    44
            // 
StephaneLenclud@247
    45
            this.iComboBoxObjectType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
StephaneLenclud@231
    46
            | System.Windows.Forms.AnchorStyles.Right)));
StephaneLenclud@247
    47
            this.iComboBoxObjectType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
StephaneLenclud@247
    48
            this.iComboBoxObjectType.FormattingEnabled = true;
StephaneLenclud@247
    49
            this.iComboBoxObjectType.Location = new System.Drawing.Point(55, 52);
StephaneLenclud@247
    50
            this.iComboBoxObjectType.Name = "iComboBoxObjectType";
StephaneLenclud@247
    51
            this.iComboBoxObjectType.Size = new System.Drawing.Size(272, 21);
StephaneLenclud@247
    52
            this.iComboBoxObjectType.Sorted = true;
StephaneLenclud@247
    53
            this.iComboBoxObjectType.TabIndex = 18;
StephaneLenclud@247
    54
            this.iComboBoxObjectType.SelectedIndexChanged += new System.EventHandler(this.comboBoxActionType_SelectedIndexChanged);
StephaneLenclud@260
    55
            this.iComboBoxObjectType.Enter += new System.EventHandler(this.iComboBoxObjectType_Enter);
StephaneLenclud@247
    56
            this.iComboBoxObjectType.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.iComboBoxObjectType_KeyPress);
StephaneLenclud@260
    57
            this.iComboBoxObjectType.Leave += new System.EventHandler(this.iComboBoxObjectType_Leave);
StephaneLenclud@231
    58
            // 
StephaneLenclud@231
    59
            // labelActionType
StephaneLenclud@231
    60
            // 
StephaneLenclud@231
    61
            this.labelActionType.AutoSize = true;
StephaneLenclud@247
    62
            this.labelActionType.Location = new System.Drawing.Point(12, 55);
StephaneLenclud@231
    63
            this.labelActionType.Name = "labelActionType";
StephaneLenclud@231
    64
            this.labelActionType.Size = new System.Drawing.Size(37, 13);
StephaneLenclud@231
    65
            this.labelActionType.TabIndex = 20;
StephaneLenclud@231
    66
            this.labelActionType.Text = "Type :";
StephaneLenclud@231
    67
            // 
StephaneLenclud@260
    68
            // iButtonOk
StephaneLenclud@231
    69
            // 
StephaneLenclud@247
    70
            this.iButtonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
StephaneLenclud@247
    71
            this.iButtonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
StephaneLenclud@247
    72
            this.iButtonOk.Location = new System.Drawing.Point(12, 157);
StephaneLenclud@260
    73
            this.iButtonOk.Name = "iButtonOk";
StephaneLenclud@247
    74
            this.iButtonOk.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@247
    75
            this.iButtonOk.TabIndex = 21;
StephaneLenclud@247
    76
            this.iButtonOk.Text = "Ok";
StephaneLenclud@247
    77
            this.iButtonOk.UseVisualStyleBackColor = true;
StephaneLenclud@247
    78
            this.iButtonOk.Click += new System.EventHandler(this.buttonOk_Click);
StephaneLenclud@231
    79
            // 
StephaneLenclud@231
    80
            // buttonCancel
StephaneLenclud@231
    81
            // 
StephaneLenclud@231
    82
            this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
StephaneLenclud@231
    83
            this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
StephaneLenclud@247
    84
            this.buttonCancel.Location = new System.Drawing.Point(93, 157);
StephaneLenclud@231
    85
            this.buttonCancel.Name = "buttonCancel";
StephaneLenclud@231
    86
            this.buttonCancel.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@231
    87
            this.buttonCancel.TabIndex = 22;
StephaneLenclud@231
    88
            this.buttonCancel.Text = "Cancel";
StephaneLenclud@231
    89
            this.buttonCancel.UseVisualStyleBackColor = true;
StephaneLenclud@231
    90
            // 
StephaneLenclud@231
    91
            // iTableLayoutPanel
StephaneLenclud@231
    92
            // 
StephaneLenclud@231
    93
            this.iTableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
StephaneLenclud@231
    94
            | System.Windows.Forms.AnchorStyles.Left) 
StephaneLenclud@231
    95
            | System.Windows.Forms.AnchorStyles.Right)));
StephaneLenclud@231
    96
            this.iTableLayoutPanel.AutoSize = true;
StephaneLenclud@231
    97
            this.iTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
StephaneLenclud@231
    98
            this.iTableLayoutPanel.ColumnCount = 2;
StephaneLenclud@231
    99
            this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@231
   100
            this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@247
   101
            this.iTableLayoutPanel.Location = new System.Drawing.Point(15, 91);
StephaneLenclud@231
   102
            this.iTableLayoutPanel.Name = "iTableLayoutPanel";
StephaneLenclud@231
   103
            this.iTableLayoutPanel.RowCount = 2;
StephaneLenclud@231
   104
            this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@231
   105
            this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@247
   106
            this.iTableLayoutPanel.Size = new System.Drawing.Size(312, 46);
StephaneLenclud@231
   107
            this.iTableLayoutPanel.TabIndex = 23;
StephaneLenclud@231
   108
            // 
StephaneLenclud@260
   109
            // iButtonTest
StephaneLenclud@231
   110
            // 
StephaneLenclud@247
   111
            this.iButtonTest.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
StephaneLenclud@247
   112
            this.iButtonTest.Location = new System.Drawing.Point(252, 157);
StephaneLenclud@260
   113
            this.iButtonTest.Name = "iButtonTest";
StephaneLenclud@247
   114
            this.iButtonTest.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@247
   115
            this.iButtonTest.TabIndex = 24;
StephaneLenclud@247
   116
            this.iButtonTest.Text = "Test";
StephaneLenclud@247
   117
            this.iButtonTest.UseVisualStyleBackColor = true;
StephaneLenclud@247
   118
            this.iButtonTest.Click += new System.EventHandler(this.buttonTest_Click);
StephaneLenclud@231
   119
            // 
StephaneLenclud@247
   120
            // iLabelBrief
StephaneLenclud@246
   121
            // 
StephaneLenclud@247
   122
            this.iLabelBrief.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
StephaneLenclud@246
   123
            | System.Windows.Forms.AnchorStyles.Right)));
StephaneLenclud@247
   124
            this.iLabelBrief.AutoSize = true;
StephaneLenclud@247
   125
            this.iLabelBrief.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
StephaneLenclud@247
   126
            this.iLabelBrief.Location = new System.Drawing.Point(12, 9);
StephaneLenclud@247
   127
            this.iLabelBrief.Name = "iLabelBrief";
StephaneLenclud@247
   128
            this.iLabelBrief.Size = new System.Drawing.Size(33, 13);
StephaneLenclud@247
   129
            this.iLabelBrief.TabIndex = 25;
StephaneLenclud@247
   130
            this.iLabelBrief.Text = "Brief";
StephaneLenclud@247
   131
            // 
StephaneLenclud@247
   132
            // iLabelDescription
StephaneLenclud@247
   133
            // 
StephaneLenclud@247
   134
            this.iLabelDescription.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
StephaneLenclud@247
   135
            | System.Windows.Forms.AnchorStyles.Right)));
StephaneLenclud@247
   136
            this.iLabelDescription.AutoSize = true;
StephaneLenclud@247
   137
            this.iLabelDescription.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
StephaneLenclud@247
   138
            this.iLabelDescription.Location = new System.Drawing.Point(12, 31);
StephaneLenclud@247
   139
            this.iLabelDescription.Name = "iLabelDescription";
StephaneLenclud@247
   140
            this.iLabelDescription.Size = new System.Drawing.Size(60, 13);
StephaneLenclud@247
   141
            this.iLabelDescription.TabIndex = 26;
StephaneLenclud@247
   142
            this.iLabelDescription.Text = "Description";
StephaneLenclud@246
   143
            // 
StephaneLenclud@239
   144
            // FormEditObject
StephaneLenclud@231
   145
            // 
StephaneLenclud@247
   146
            this.AcceptButton = this.iButtonOk;
StephaneLenclud@231
   147
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
StephaneLenclud@231
   148
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
StephaneLenclud@231
   149
            this.AutoSize = true;
StephaneLenclud@231
   150
            this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
StephaneLenclud@231
   151
            this.CancelButton = this.buttonCancel;
StephaneLenclud@247
   152
            this.ClientSize = new System.Drawing.Size(339, 192);
StephaneLenclud@247
   153
            this.Controls.Add(this.iLabelDescription);
StephaneLenclud@247
   154
            this.Controls.Add(this.iLabelBrief);
StephaneLenclud@247
   155
            this.Controls.Add(this.iButtonTest);
StephaneLenclud@231
   156
            this.Controls.Add(this.buttonCancel);
StephaneLenclud@247
   157
            this.Controls.Add(this.iButtonOk);
StephaneLenclud@231
   158
            this.Controls.Add(this.labelActionType);
StephaneLenclud@247
   159
            this.Controls.Add(this.iComboBoxObjectType);
StephaneLenclud@246
   160
            this.Controls.Add(this.iTableLayoutPanel);
StephaneLenclud@231
   161
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
StephaneLenclud@231
   162
            this.MaximizeBox = false;
StephaneLenclud@231
   163
            this.MinimizeBox = false;
StephaneLenclud@239
   164
            this.Name = "FormEditObject";
StephaneLenclud@260
   165
            this.Text = "Edit object";
StephaneLenclud@239
   166
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormEditObject_FormClosing);
StephaneLenclud@231
   167
            this.Load += new System.EventHandler(this.FormEditAction_Load);
StephaneLenclud@231
   168
            this.ResumeLayout(false);
StephaneLenclud@231
   169
            this.PerformLayout();
StephaneLenclud@231
   170
StephaneLenclud@231
   171
        }
StephaneLenclud@231
   172
StephaneLenclud@231
   173
        #endregion
StephaneLenclud@231
   174
StephaneLenclud@247
   175
        private System.Windows.Forms.ComboBox iComboBoxObjectType;
StephaneLenclud@231
   176
        private System.Windows.Forms.Label labelActionType;
StephaneLenclud@247
   177
        private System.Windows.Forms.Button iButtonOk;
StephaneLenclud@231
   178
        private System.Windows.Forms.Button buttonCancel;
StephaneLenclud@231
   179
        private System.Windows.Forms.TableLayoutPanel iTableLayoutPanel;
StephaneLenclud@231
   180
        private System.Windows.Forms.ToolTip toolTip;
StephaneLenclud@247
   181
        private System.Windows.Forms.Button iButtonTest;
StephaneLenclud@247
   182
        private System.Windows.Forms.Label iLabelBrief;
StephaneLenclud@247
   183
        private System.Windows.Forms.Label iLabelDescription;
StephaneLenclud@231
   184
    }
StephaneLenclud@231
   185
}