Server/FormEditAction.Designer.cs
author StephaneLenclud
Tue, 26 Jul 2016 15:05:57 +0200
changeset 220 e5910d7b6a81
parent 219 99c407831232
child 221 5770478e1fe3
permissions -rw-r--r--
Adding support for enumerated action property edition.
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@211
    42
            this.comboBoxActionType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
StephaneLenclud@211
    43
            this.comboBoxActionType.FormattingEnabled = true;
StephaneLenclud@211
    44
            this.comboBoxActionType.Location = new System.Drawing.Point(55, 12);
StephaneLenclud@211
    45
            this.comboBoxActionType.Name = "comboBoxActionType";
StephaneLenclud@211
    46
            this.comboBoxActionType.Size = new System.Drawing.Size(333, 21);
StephaneLenclud@211
    47
            this.comboBoxActionType.TabIndex = 18;
StephaneLenclud@219
    48
            this.comboBoxActionType.SelectedIndexChanged += new System.EventHandler(this.comboBoxActionType_SelectedIndexChanged);
StephaneLenclud@211
    49
            // 
StephaneLenclud@211
    50
            // labelActionType
StephaneLenclud@211
    51
            // 
StephaneLenclud@211
    52
            this.labelActionType.AutoSize = true;
StephaneLenclud@211
    53
            this.labelActionType.Location = new System.Drawing.Point(12, 15);
StephaneLenclud@211
    54
            this.labelActionType.Name = "labelActionType";
StephaneLenclud@211
    55
            this.labelActionType.Size = new System.Drawing.Size(37, 13);
StephaneLenclud@211
    56
            this.labelActionType.TabIndex = 20;
StephaneLenclud@211
    57
            this.labelActionType.Text = "Type :";
StephaneLenclud@211
    58
            // 
StephaneLenclud@211
    59
            // buttonOk
StephaneLenclud@211
    60
            // 
StephaneLenclud@219
    61
            this.buttonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
StephaneLenclud@211
    62
            this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK;
StephaneLenclud@220
    63
            this.buttonOk.Location = new System.Drawing.Point(12, 72);
StephaneLenclud@211
    64
            this.buttonOk.Name = "buttonOk";
StephaneLenclud@211
    65
            this.buttonOk.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@211
    66
            this.buttonOk.TabIndex = 21;
StephaneLenclud@211
    67
            this.buttonOk.Text = "Ok";
StephaneLenclud@211
    68
            this.buttonOk.UseVisualStyleBackColor = true;
StephaneLenclud@211
    69
            this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
StephaneLenclud@211
    70
            // 
StephaneLenclud@211
    71
            // buttonCancel
StephaneLenclud@211
    72
            // 
StephaneLenclud@219
    73
            this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
StephaneLenclud@211
    74
            this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
StephaneLenclud@220
    75
            this.buttonCancel.Location = new System.Drawing.Point(93, 72);
StephaneLenclud@211
    76
            this.buttonCancel.Name = "buttonCancel";
StephaneLenclud@211
    77
            this.buttonCancel.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@211
    78
            this.buttonCancel.TabIndex = 22;
StephaneLenclud@211
    79
            this.buttonCancel.Text = "Cancel";
StephaneLenclud@211
    80
            this.buttonCancel.UseVisualStyleBackColor = true;
StephaneLenclud@211
    81
            // 
StephaneLenclud@219
    82
            // iTableLayoutPanel
StephaneLenclud@219
    83
            // 
StephaneLenclud@220
    84
            this.iTableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
StephaneLenclud@220
    85
            | System.Windows.Forms.AnchorStyles.Left) 
StephaneLenclud@220
    86
            | System.Windows.Forms.AnchorStyles.Right)));
StephaneLenclud@220
    87
            this.iTableLayoutPanel.AutoSize = true;
StephaneLenclud@219
    88
            this.iTableLayoutPanel.ColumnCount = 2;
StephaneLenclud@219
    89
            this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@219
    90
            this.iTableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@219
    91
            this.iTableLayoutPanel.Location = new System.Drawing.Point(15, 50);
StephaneLenclud@219
    92
            this.iTableLayoutPanel.Name = "iTableLayoutPanel";
StephaneLenclud@219
    93
            this.iTableLayoutPanel.RowCount = 2;
StephaneLenclud@219
    94
            this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@219
    95
            this.iTableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
StephaneLenclud@220
    96
            this.iTableLayoutPanel.Size = new System.Drawing.Size(373, 16);
StephaneLenclud@219
    97
            this.iTableLayoutPanel.TabIndex = 23;
StephaneLenclud@219
    98
            // 
StephaneLenclud@211
    99
            // FormEditAction
StephaneLenclud@211
   100
            // 
StephaneLenclud@219
   101
            this.AcceptButton = this.buttonOk;
StephaneLenclud@211
   102
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
StephaneLenclud@211
   103
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
StephaneLenclud@220
   104
            this.AutoSize = true;
StephaneLenclud@219
   105
            this.CancelButton = this.buttonCancel;
StephaneLenclud@220
   106
            this.ClientSize = new System.Drawing.Size(400, 107);
StephaneLenclud@219
   107
            this.Controls.Add(this.iTableLayoutPanel);
StephaneLenclud@211
   108
            this.Controls.Add(this.buttonCancel);
StephaneLenclud@211
   109
            this.Controls.Add(this.buttonOk);
StephaneLenclud@211
   110
            this.Controls.Add(this.labelActionType);
StephaneLenclud@211
   111
            this.Controls.Add(this.comboBoxActionType);
StephaneLenclud@211
   112
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
StephaneLenclud@211
   113
            this.MaximizeBox = false;
StephaneLenclud@211
   114
            this.MinimizeBox = false;
StephaneLenclud@211
   115
            this.Name = "FormEditAction";
StephaneLenclud@211
   116
            this.Text = "Edit action";
StephaneLenclud@211
   117
            this.Load += new System.EventHandler(this.FormEditAction_Load);
StephaneLenclud@211
   118
            this.Validating += new System.ComponentModel.CancelEventHandler(this.FormEditAction_Validating);
StephaneLenclud@211
   119
            this.ResumeLayout(false);
StephaneLenclud@211
   120
            this.PerformLayout();
StephaneLenclud@211
   121
StephaneLenclud@211
   122
        }
StephaneLenclud@211
   123
StephaneLenclud@211
   124
        #endregion
StephaneLenclud@211
   125
StephaneLenclud@211
   126
        private System.Windows.Forms.ComboBox comboBoxActionType;
StephaneLenclud@211
   127
        private System.Windows.Forms.Label labelActionType;
StephaneLenclud@211
   128
        private System.Windows.Forms.Button buttonOk;
StephaneLenclud@211
   129
        private System.Windows.Forms.Button buttonCancel;
StephaneLenclud@219
   130
        private System.Windows.Forms.TableLayoutPanel iTableLayoutPanel;
StephaneLenclud@219
   131
        private System.Windows.Forms.ToolTip toolTip;
StephaneLenclud@211
   132
    }
StephaneLenclud@211
   133
}