Nya ResultatRutor

This commit is contained in:
2022-06-30 23:23:16 +02:00
parent 8b722b024e
commit d39a372b3a
2 changed files with 55 additions and 10 deletions

View File

@ -37,6 +37,8 @@
this.btnDiceTmpl6 = new System.Windows.Forms.Button();
this.btnDiceTmpl5 = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.txtMaxValue = new System.Windows.Forms.TextBox();
this.txtChosenValue = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// label1
@ -135,11 +137,31 @@
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// txtMaxValue
//
this.txtMaxValue.Location = new System.Drawing.Point(669, 82);
this.txtMaxValue.Multiline = true;
this.txtMaxValue.Name = "txtMaxValue";
this.txtMaxValue.Size = new System.Drawing.Size(42, 44);
this.txtMaxValue.TabIndex = 9;
this.txtMaxValue.Visible = false;
//
// txtChosenValue
//
this.txtChosenValue.Location = new System.Drawing.Point(669, 126);
this.txtChosenValue.Multiline = true;
this.txtChosenValue.Name = "txtChosenValue";
this.txtChosenValue.Size = new System.Drawing.Size(42, 44);
this.txtChosenValue.TabIndex = 10;
this.txtChosenValue.Visible = false;
//
// frmPersonRound
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.txtChosenValue);
this.Controls.Add(this.txtMaxValue);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnDiceTmpl6);
this.Controls.Add(this.btnDiceTmpl5);
@ -168,5 +190,7 @@
private Button btnDiceTmpl6;
private Button btnDiceTmpl5;
private Button btnClose;
private TextBox txtMaxValue;
private TextBox txtChosenValue;
}
}