Server/FormEditObject.Designer.cs
author StephaneLenclud
Sat, 20 Aug 2016 21:00:35 +0200
changeset 246 30a221eecc06
parent 239 dd7770b97916
child 247 afdbe76ab03b
permissions -rw-r--r--
Generic HID event with key recognition functional.
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@231
    32
            this.comboBoxActionType = new System.Windows.Forms.ComboBox();
StephaneLenclud@231
    33
            this.labelActionType = new System.Windows.Forms.Label();
StephaneLenclud@231
    34
            this.buttonOk = 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@231
    38
            this.buttonTest = new System.Windows.Forms.Button();
StephaneLenclud@246
    39
            this.labelBrief = new System.Windows.Forms.Label();
StephaneLenclud@231
    40
            this.SuspendLayout();
StephaneLenclud@231
    41
            // 
StephaneLenclud@231
    42
            // comboBoxActionType
StephaneLenclud@231
    43
            // 
StephaneLenclud@231
    44
            this.comboBoxActionType.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
StephaneLenclud@231
    45
            | System.Windows.Forms.AnchorStyles.Right)));
StephaneLenclud@231
    46
            this.comboBoxActionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
StephaneLenclud@231
    47
            this.comboBoxActionType.FormattingEnabled = true;
StephaneLenclud@231
    48
            this.comboBoxActionType.Location = new System.Drawing.Point(55, 12);
StephaneLenclud@231
    49
            this.comboBoxActionType.Name = "comboBoxActionType";
StephaneLenclud@231
    50
            this.comboBoxActionType.Size = new System.Drawing.Size(272, 21);
StephaneLenclud@231
    51
            this.comboBoxActionType.Sorted = true;
StephaneLenclud@231
    52
            this.comboBoxActionType.TabIndex = 18;
StephaneLenclud@231
    53
            this.comboBoxActionType.SelectedIndexChanged += new System.EventHandler(this.comboBoxActionType_SelectedIndexChanged);
StephaneLenclud@231
    54
            // 
StephaneLenclud@231
    55
            // labelActionType
StephaneLenclud@231
    56
            // 
StephaneLenclud@231
    57
            this.labelActionType.AutoSize = true;
StephaneLenclud@231
    58
            this.labelActionType.Location = new System.Drawing.Point(12, 15);
StephaneLenclud@231
    59
            this.labelActionType.Name = "labelActionType";
StephaneLenclud@231
    60
            this.labelActionType.Size = new System.Drawing.Size(37, 13);
StephaneLenclud@231
    61
            this.labelActionType.TabIndex = 20;
StephaneLenclud@231
    62
            this.labelActionType.Text = "Type :";
StephaneLenclud@231
    63
            // 
StephaneLenclud@231
    64
            // buttonOk
StephaneLenclud@231
    65
            // 
StephaneLenclud@231
    66
            this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
StephaneLenclud@231
    67
            this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
StephaneLenclud@246
    68
            this.buttonOk.Location = new System.Drawing.Point(12, 151);
StephaneLenclud@231
    69
            this.buttonOk.Name = "buttonOk";
StephaneLenclud@231
    70
            this.buttonOk.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@231
    71
            this.buttonOk.TabIndex = 21;
StephaneLenclud@231
    72
            this.buttonOk.Text = "Ok";
StephaneLenclud@231
    73
            this.buttonOk.UseVisualStyleBackColor = true;
StephaneLenclud@231
    74
            this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
StephaneLenclud@231
    75
            // 
StephaneLenclud@231
    76
            // buttonCancel
StephaneLenclud@231
    77
            // 
StephaneLenclud@231
    78
            this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
StephaneLenclud@231
    79
            this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
StephaneLenclud@246
    80
            this.buttonCancel.Location = new System.Drawing.Point(93, 151);
StephaneLenclud@231
    81
            this.buttonCancel.Name = "buttonCancel";
StephaneLenclud@231
    82
            this.buttonCancel.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@231
    83
            this.buttonCancel.TabIndex = 22;
StephaneLenclud@231
    84
            this.buttonCancel.Text = "Cancel";
StephaneLenclud@231
    85
            this.buttonCancel.UseVisualStyleBackColor = true;
StephaneLenclud@231
    86
            // 
StephaneLenclud@231
    87
            // iTableLayoutPanel
StephaneLenclud@231
    88
            // 
StephaneLenclud@231
    89
            this.iTableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
StephaneLenclud@231
    90
            | System.Windows.Forms.AnchorStyles.Left) 
StephaneLenclud@231
    91
            | System.Windows.Forms.AnchorStyles.Right)));
StephaneLenclud@231
    92
            this.iTableLayoutPanel.AutoSize = true;
StephaneLenclud@231
    93
            this.iTableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
StephaneLenclud@231
    94
            this.iTableLayoutPanel.ColumnCount = 2;
StephaneLenclud@231
    95
            this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@231
    96
            this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@246
    97
            this.iTableLayoutPanel.Location = new System.Drawing.Point(15, 72);
StephaneLenclud@231
    98
            this.iTableLayoutPanel.Name = "iTableLayoutPanel";
StephaneLenclud@231
    99
            this.iTableLayoutPanel.RowCount = 2;
StephaneLenclud@231
   100
            this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@231
   101
            this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@246
   102
            this.iTableLayoutPanel.Size = new System.Drawing.Size(312, 60);
StephaneLenclud@231
   103
            this.iTableLayoutPanel.TabIndex = 23;
StephaneLenclud@231
   104
            // 
StephaneLenclud@231
   105
            // buttonTest
StephaneLenclud@231
   106
            // 
StephaneLenclud@231
   107
            this.buttonTest.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
StephaneLenclud@246
   108
            this.buttonTest.Location = new System.Drawing.Point(252, 151);
StephaneLenclud@231
   109
            this.buttonTest.Name = "buttonTest";
StephaneLenclud@231
   110
            this.buttonTest.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@231
   111
            this.buttonTest.TabIndex = 24;
StephaneLenclud@231
   112
            this.buttonTest.Text = "Test";
StephaneLenclud@231
   113
            this.buttonTest.UseVisualStyleBackColor = true;
StephaneLenclud@231
   114
            this.buttonTest.Click += new System.EventHandler(this.buttonTest_Click);
StephaneLenclud@231
   115
            // 
StephaneLenclud@246
   116
            // labelBrief
StephaneLenclud@246
   117
            // 
StephaneLenclud@246
   118
            this.labelBrief.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
StephaneLenclud@246
   119
            | System.Windows.Forms.AnchorStyles.Right)));
StephaneLenclud@246
   120
            this.labelBrief.AutoSize = true;
StephaneLenclud@246
   121
            this.labelBrief.Location = new System.Drawing.Point(12, 45);
StephaneLenclud@246
   122
            this.labelBrief.Name = "labelBrief";
StephaneLenclud@246
   123
            this.labelBrief.Size = new System.Drawing.Size(28, 13);
StephaneLenclud@246
   124
            this.labelBrief.TabIndex = 25;
StephaneLenclud@246
   125
            this.labelBrief.Text = "Brief";
StephaneLenclud@246
   126
            // 
StephaneLenclud@239
   127
            // FormEditObject
StephaneLenclud@231
   128
            // 
StephaneLenclud@231
   129
            this.AcceptButton = this.buttonOk;
StephaneLenclud@231
   130
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
StephaneLenclud@231
   131
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
StephaneLenclud@231
   132
            this.AutoSize = true;
StephaneLenclud@231
   133
            this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
StephaneLenclud@231
   134
            this.CancelButton = this.buttonCancel;
StephaneLenclud@246
   135
            this.ClientSize = new System.Drawing.Size(339, 186);
StephaneLenclud@246
   136
            this.Controls.Add(this.labelBrief);
StephaneLenclud@231
   137
            this.Controls.Add(this.buttonTest);
StephaneLenclud@231
   138
            this.Controls.Add(this.buttonCancel);
StephaneLenclud@231
   139
            this.Controls.Add(this.buttonOk);
StephaneLenclud@231
   140
            this.Controls.Add(this.labelActionType);
StephaneLenclud@231
   141
            this.Controls.Add(this.comboBoxActionType);
StephaneLenclud@246
   142
            this.Controls.Add(this.iTableLayoutPanel);
StephaneLenclud@231
   143
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
StephaneLenclud@231
   144
            this.MaximizeBox = false;
StephaneLenclud@231
   145
            this.MinimizeBox = false;
StephaneLenclud@239
   146
            this.Name = "FormEditObject";
StephaneLenclud@231
   147
            this.Text = "Edit action";
StephaneLenclud@239
   148
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormEditObject_FormClosing);
StephaneLenclud@231
   149
            this.Load += new System.EventHandler(this.FormEditAction_Load);
StephaneLenclud@231
   150
            this.ResumeLayout(false);
StephaneLenclud@231
   151
            this.PerformLayout();
StephaneLenclud@231
   152
StephaneLenclud@231
   153
        }
StephaneLenclud@231
   154
StephaneLenclud@231
   155
        #endregion
StephaneLenclud@231
   156
StephaneLenclud@231
   157
        private System.Windows.Forms.ComboBox comboBoxActionType;
StephaneLenclud@231
   158
        private System.Windows.Forms.Label labelActionType;
StephaneLenclud@231
   159
        private System.Windows.Forms.Button buttonOk;
StephaneLenclud@231
   160
        private System.Windows.Forms.Button buttonCancel;
StephaneLenclud@231
   161
        private System.Windows.Forms.TableLayoutPanel iTableLayoutPanel;
StephaneLenclud@231
   162
        private System.Windows.Forms.ToolTip toolTip;
StephaneLenclud@231
   163
        private System.Windows.Forms.Button buttonTest;
StephaneLenclud@246
   164
        private System.Windows.Forms.Label labelBrief;
StephaneLenclud@231
   165
    }
StephaneLenclud@231
   166
}