påbörjat hantering olika portföljer

This commit is contained in:
2021-03-13 00:08:11 +01:00
parent b4a9237290
commit b25c6fd538
18 changed files with 454 additions and 71 deletions

View File

@ -29,12 +29,95 @@ namespace StockInfo
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPersonShareConnect));
this.lstShares = new System.Windows.Forms.ListBox();
this.listBox1 = new System.Windows.Forms.ListBox();
this.btnToPerson = new System.Windows.Forms.Button();
this.lblShareHolder = new System.Windows.Forms.Label();
this.label1 = new System.Windows.Forms.Label();
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lstShares
//
this.lstShares.FormattingEnabled = true;
this.lstShares.ItemHeight = 15;
this.lstShares.Location = new System.Drawing.Point(35, 35);
this.lstShares.Name = "lstShares";
this.lstShares.Size = new System.Drawing.Size(173, 349);
this.lstShares.TabIndex = 0;
//
// listBox1
//
this.listBox1.FormattingEnabled = true;
this.listBox1.ItemHeight = 15;
this.listBox1.Location = new System.Drawing.Point(270, 35);
this.listBox1.Name = "listBox1";
this.listBox1.Size = new System.Drawing.Size(173, 349);
this.listBox1.TabIndex = 1;
//
// btnToPerson
//
this.btnToPerson.Image = ((System.Drawing.Image)(resources.GetObject("btnToPerson.Image")));
this.btnToPerson.Location = new System.Drawing.Point(214, 202);
this.btnToPerson.Name = "btnToPerson";
this.btnToPerson.Size = new System.Drawing.Size(49, 23);
this.btnToPerson.TabIndex = 2;
this.btnToPerson.UseVisualStyleBackColor = true;
//
// lblShareHolder
//
this.lblShareHolder.AutoSize = true;
this.lblShareHolder.Location = new System.Drawing.Point(270, 12);
this.lblShareHolder.Name = "lblShareHolder";
this.lblShareHolder.Size = new System.Drawing.Size(80, 15);
this.lblShareHolder.TabIndex = 3;
this.lblShareHolder.Text = "[share holder]";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(35, 12);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(102, 15);
this.label1.TabIndex = 4;
this.label1.Text = "Uncoupled Shares";
//
// button1
//
this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
this.button1.Location = new System.Drawing.Point(215, 173);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(49, 23);
this.button1.TabIndex = 5;
this.button1.UseVisualStyleBackColor = true;
//
// frmPersonShareConnect
//
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(509, 450);
this.Controls.Add(this.button1);
this.Controls.Add(this.label1);
this.Controls.Add(this.lblShareHolder);
this.Controls.Add(this.btnToPerson);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.lstShares);
this.Name = "frmPersonShareConnect";
this.Text = "frmPersonShareConnect";
this.Shown += new System.EventHandler(this.frmPersonShareConnect_Shown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox lstShares;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.Button btnToPerson;
private System.Windows.Forms.Label lblShareHolder;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button1;
}
}