Shares can be handled by owners

This commit is contained in:
2021-03-13 17:06:01 +01:00
parent b25c6fd538
commit a99115a031
12 changed files with 213 additions and 49 deletions

View File

@ -31,11 +31,12 @@ namespace StockInfo
{
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.lstPersConnected = new System.Windows.Forms.ListBox();
this.btnDisconnect = 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.btnConnect = new System.Windows.Forms.Button();
this.btnClose = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// lstShares
@ -47,23 +48,24 @@ namespace StockInfo
this.lstShares.Size = new System.Drawing.Size(173, 349);
this.lstShares.TabIndex = 0;
//
// listBox1
// lstPersConnected
//
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;
this.lstPersConnected.FormattingEnabled = true;
this.lstPersConnected.ItemHeight = 15;
this.lstPersConnected.Location = new System.Drawing.Point(270, 35);
this.lstPersConnected.Name = "lstPersConnected";
this.lstPersConnected.Size = new System.Drawing.Size(173, 349);
this.lstPersConnected.TabIndex = 1;
//
// btnToPerson
// btnDisconnect
//
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;
this.btnDisconnect.Image = ((System.Drawing.Image)(resources.GetObject("btnDisconnect.Image")));
this.btnDisconnect.Location = new System.Drawing.Point(214, 202);
this.btnDisconnect.Name = "btnDisconnect";
this.btnDisconnect.Size = new System.Drawing.Size(49, 23);
this.btnDisconnect.TabIndex = 2;
this.btnDisconnect.UseVisualStyleBackColor = true;
this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click);
//
// lblShareHolder
//
@ -83,25 +85,37 @@ namespace StockInfo
this.label1.TabIndex = 4;
this.label1.Text = "Uncoupled Shares";
//
// button1
// btnConnect
//
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;
this.btnConnect.Image = ((System.Drawing.Image)(resources.GetObject("btnConnect.Image")));
this.btnConnect.Location = new System.Drawing.Point(215, 173);
this.btnConnect.Name = "btnConnect";
this.btnConnect.Size = new System.Drawing.Size(49, 23);
this.btnConnect.TabIndex = 5;
this.btnConnect.UseVisualStyleBackColor = true;
this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(422, 415);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(75, 23);
this.btnClose.TabIndex = 6;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// frmPersonShareConnect
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(509, 450);
this.Controls.Add(this.button1);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnConnect);
this.Controls.Add(this.label1);
this.Controls.Add(this.lblShareHolder);
this.Controls.Add(this.btnToPerson);
this.Controls.Add(this.listBox1);
this.Controls.Add(this.btnDisconnect);
this.Controls.Add(this.lstPersConnected);
this.Controls.Add(this.lstShares);
this.Name = "frmPersonShareConnect";
this.Text = "frmPersonShareConnect";
@ -114,10 +128,11 @@ namespace StockInfo
#endregion
private System.Windows.Forms.ListBox lstShares;
private System.Windows.Forms.ListBox listBox1;
private System.Windows.Forms.Button btnToPerson;
private System.Windows.Forms.ListBox lstPersConnected;
private System.Windows.Forms.Button btnDisconnect;
private System.Windows.Forms.Label lblShareHolder;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button btnConnect;
private System.Windows.Forms.Button btnClose;
}
}