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