Logging added points

This commit is contained in:
2022-07-14 16:52:42 +02:00
parent 903a9f99ce
commit 8aa46c3176
3 changed files with 41 additions and 8 deletions

View File

@ -38,6 +38,8 @@
this.txtNewName = new System.Windows.Forms.TextBox();
this.btnAddOk = new System.Windows.Forms.Button();
this.btnSound = new System.Windows.Forms.Button();
this.lstLogBox = new System.Windows.Forms.ListBox();
this.lblLog = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
@ -72,7 +74,7 @@
this.lvMemberList.HoverSelection = true;
this.lvMemberList.Location = new System.Drawing.Point(387, 97);
this.lvMemberList.Name = "lvMemberList";
this.lvMemberList.Size = new System.Drawing.Size(302, 166);
this.lvMemberList.Size = new System.Drawing.Size(302, 315);
this.lvMemberList.TabIndex = 2;
this.lvMemberList.UseCompatibleStateImageBehavior = false;
this.lvMemberList.View = System.Windows.Forms.View.Details;
@ -134,11 +136,31 @@
this.btnSound.Visible = false;
this.btnSound.Click += new System.EventHandler(this.btnSound_Click);
//
// lstLogBox
//
this.lstLogBox.FormattingEnabled = true;
this.lstLogBox.ItemHeight = 15;
this.lstLogBox.Location = new System.Drawing.Point(707, 97);
this.lstLogBox.Name = "lstLogBox";
this.lstLogBox.Size = new System.Drawing.Size(120, 319);
this.lstLogBox.TabIndex = 7;
//
// lblLog
//
this.lblLog.AutoSize = true;
this.lblLog.Location = new System.Drawing.Point(707, 66);
this.lblLog.Name = "lblLog";
this.lblLog.Size = new System.Drawing.Size(68, 15);
this.lblLog.TabIndex = 8;
this.lblLog.Text = "PoängLogg";
//
// frmStart
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.ClientSize = new System.Drawing.Size(897, 450);
this.Controls.Add(this.lblLog);
this.Controls.Add(this.lstLogBox);
this.Controls.Add(this.btnSound);
this.Controls.Add(this.btnAddOk);
this.Controls.Add(this.txtNewName);
@ -166,5 +188,7 @@
private TextBox txtNewName;
private Button btnAddOk;
private Button btnSound;
private ListBox lstLogBox;
private Label lblLog;
}
}