-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDividendTable.Designer.cs
79 lines (77 loc) · 2.62 KB
/
DividendTable.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
* Created by SharpDevelop.
* User: Will 2nd
* Date: 09/01/2016
* Time: 17:08
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
namespace Forward_Calculator
{
partial class DividendTable
{
/// <summary>
/// Designer variable used to keep track of non-visual components.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Disposes resources used by the control.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing) {
if (components != null) {
components.Dispose();
}
}
base.Dispose(disposing);
}
/// <summary>
/// This method is required for Windows Forms designer support.
/// Do not change the method contents inside the source code editor. The Forms designer might
/// not be able to load this method if it was changed manually.
/// </summary>
private void InitializeComponent()
{
this.txtb_Prediction = new System.Windows.Forms.TextBox();
this.txtb_Amount = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// txtb_Prediction
//
this.txtb_Prediction.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtb_Prediction.Location = new System.Drawing.Point(4, 4);
this.txtb_Prediction.Multiline = true;
this.txtb_Prediction.Name = "txtb_Prediction";
this.txtb_Prediction.Size = new System.Drawing.Size(91, 132);
this.txtb_Prediction.TabIndex = 0;
this.txtb_Prediction.Text = "Prediction";
this.txtb_Prediction.TextChanged += new System.EventHandler(this.TextChanged);
//
// txtb_Amount
//
this.txtb_Amount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtb_Amount.Location = new System.Drawing.Point(99, 4);
this.txtb_Amount.Multiline = true;
this.txtb_Amount.Name = "txtb_Amount";
this.txtb_Amount.Size = new System.Drawing.Size(91, 132);
this.txtb_Amount.TabIndex = 0;
this.txtb_Amount.Text = "Amount";
this.txtb_Amount.TextChanged += new System.EventHandler(this.TextChanged);
//
// DividendTable
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.txtb_Amount);
this.Controls.Add(this.txtb_Prediction);
this.Name = "DividendTable";
this.Size = new System.Drawing.Size(193, 146);
this.ResumeLayout(false);
this.PerformLayout();
}
private System.Windows.Forms.TextBox txtb_Amount;
private System.Windows.Forms.TextBox txtb_Prediction;
}
}