Alla aktier + uppdattimes

This commit is contained in:
2021-02-08 00:01:39 +01:00
parent f51d6e9689
commit e4fee01015
5 changed files with 78 additions and 8 deletions

View File

@ -49,6 +49,8 @@ namespace RepositoryPattern
this.txtCurrValue = new System.Windows.Forms.TextBox();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.chkAutoReload = new System.Windows.Forms.CheckBox();
this.lbUpdateTimes = new System.Windows.Forms.ListBox();
this.label4 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lvMyStocks
@ -205,11 +207,31 @@ namespace RepositoryPattern
this.chkAutoReload.UseVisualStyleBackColor = true;
this.chkAutoReload.CheckedChanged += new System.EventHandler(this.chkAutoReload_CheckedChanged);
//
// lbUpdateTimes
//
this.lbUpdateTimes.FormattingEnabled = true;
this.lbUpdateTimes.ItemHeight = 15;
this.lbUpdateTimes.Location = new System.Drawing.Point(14, 375);
this.lbUpdateTimes.Name = "lbUpdateTimes";
this.lbUpdateTimes.Size = new System.Drawing.Size(120, 94);
this.lbUpdateTimes.TabIndex = 8;
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(12, 354);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(76, 15);
this.label4.TabIndex = 9;
this.label4.Text = "LatestUpdate";
//
// frmMyStocks
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(935, 481);
this.Controls.Add(this.label4);
this.Controls.Add(this.lbUpdateTimes);
this.Controls.Add(this.chkAutoReload);
this.Controls.Add(this.label3);
this.Controls.Add(this.txtCurrValue);
@ -248,5 +270,7 @@ namespace RepositoryPattern
private System.Windows.Forms.TextBox txtCurrValue;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.CheckBox chkAutoReload;
private System.Windows.Forms.ListBox lbUpdateTimes;
private System.Windows.Forms.Label label4;
}
}