Client/MainForm.Designer.cs
changeset 184 7b6aa551eb6c
parent 183 e9a5dc5092fd
     1.1 --- a/Client/MainForm.Designer.cs	Fri Jan 22 16:08:22 2016 +0100
     1.2 +++ b/Client/MainForm.Designer.cs	Sun Jan 24 19:25:51 2016 +0100
     1.3 @@ -41,6 +41,9 @@
     1.4              this.buttonIndicatorsLayout = new System.Windows.Forms.Button();
     1.5              this.buttonUpdateTexts = new System.Windows.Forms.Button();
     1.6              this.buttonLayoutOneTextField = new System.Windows.Forms.Button();
     1.7 +            this.numericUpDownPriority = new System.Windows.Forms.NumericUpDown();
     1.8 +            this.labelPriority = new System.Windows.Forms.Label();
     1.9 +            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownPriority)).BeginInit();
    1.10              this.SuspendLayout();
    1.11              // 
    1.12              // buttonSetText
    1.13 @@ -167,11 +170,45 @@
    1.14              this.buttonLayoutOneTextField.UseVisualStyleBackColor = true;
    1.15              this.buttonLayoutOneTextField.Click += new System.EventHandler(this.buttonLayoutOneTextField_Click);
    1.16              // 
    1.17 +            // numericUpDownPriority
    1.18 +            // 
    1.19 +            this.numericUpDownPriority.Increment = new decimal(new int[] {
    1.20 +            10,
    1.21 +            0,
    1.22 +            0,
    1.23 +            0});
    1.24 +            this.numericUpDownPriority.Location = new System.Drawing.Point(57, 83);
    1.25 +            this.numericUpDownPriority.Maximum = new decimal(new int[] {
    1.26 +            1000,
    1.27 +            0,
    1.28 +            0,
    1.29 +            0});
    1.30 +            this.numericUpDownPriority.Name = "numericUpDownPriority";
    1.31 +            this.numericUpDownPriority.Size = new System.Drawing.Size(60, 20);
    1.32 +            this.numericUpDownPriority.TabIndex = 31;
    1.33 +            this.numericUpDownPriority.Value = new decimal(new int[] {
    1.34 +            500,
    1.35 +            0,
    1.36 +            0,
    1.37 +            0});
    1.38 +            this.numericUpDownPriority.ValueChanged += new System.EventHandler(this.numericUpDownPriority_ValueChanged);
    1.39 +            // 
    1.40 +            // labelPriority
    1.41 +            // 
    1.42 +            this.labelPriority.AutoSize = true;
    1.43 +            this.labelPriority.Location = new System.Drawing.Point(12, 85);
    1.44 +            this.labelPriority.Name = "labelPriority";
    1.45 +            this.labelPriority.Size = new System.Drawing.Size(41, 13);
    1.46 +            this.labelPriority.TabIndex = 32;
    1.47 +            this.labelPriority.Text = "Priority:";
    1.48 +            // 
    1.49              // MainForm
    1.50              // 
    1.51              this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    1.52              this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    1.53              this.ClientSize = new System.Drawing.Size(443, 252);
    1.54 +            this.Controls.Add(this.labelPriority);
    1.55 +            this.Controls.Add(this.numericUpDownPriority);
    1.56              this.Controls.Add(this.buttonLayoutOneTextField);
    1.57              this.Controls.Add(this.buttonUpdateTexts);
    1.58              this.Controls.Add(this.buttonIndicatorsLayout);
    1.59 @@ -189,6 +226,7 @@
    1.60              this.Text = "Client";
    1.61              this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
    1.62              this.Load += new System.EventHandler(this.MainForm_Load);
    1.63 +            ((System.ComponentModel.ISupportInitialize)(this.numericUpDownPriority)).EndInit();
    1.64              this.ResumeLayout(false);
    1.65              this.PerformLayout();
    1.66  
    1.67 @@ -209,6 +247,8 @@
    1.68          private System.Windows.Forms.Button buttonIndicatorsLayout;
    1.69          private System.Windows.Forms.Button buttonUpdateTexts;
    1.70  		private System.Windows.Forms.Button buttonLayoutOneTextField;
    1.71 +        private System.Windows.Forms.NumericUpDown numericUpDownPriority;
    1.72 +        private System.Windows.Forms.Label labelPriority;
    1.73      }
    1.74  }
    1.75