-
Notifications
You must be signed in to change notification settings - Fork 0
/
FormBudget.Designer.cs
174 lines (168 loc) · 6.49 KB
/
FormBudget.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
namespace Trip_Budget_Tracker
{
partial class FormBudget
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.buttonReset = new System.Windows.Forms.Button();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.buttonAdd = new System.Windows.Forms.Button();
this.buttonConfirm = new System.Windows.Forms.Button();
this.buttonSearch = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// buttonReset
//
this.buttonReset.BackColor = System.Drawing.SystemColors.ActiveCaption;
this.buttonReset.ForeColor = System.Drawing.SystemColors.ControlLightLight;
this.buttonReset.Location = new System.Drawing.Point(408, 40);
this.buttonReset.Name = "buttonReset";
this.buttonReset.Size = new System.Drawing.Size(75, 41);
this.buttonReset.TabIndex = 14;
this.buttonReset.Text = "Reset";
this.buttonReset.UseVisualStyleBackColor = false;
//
// dataGridView1
//
this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.Column1,
this.Column2});
this.dataGridView1.Location = new System.Drawing.Point(33, 113);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowTemplate.Height = 24;
this.dataGridView1.Size = new System.Drawing.Size(735, 315);
this.dataGridView1.TabIndex = 13;
//
// buttonAdd
//
this.buttonAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.buttonAdd.Location = new System.Drawing.Point(611, 40);
this.buttonAdd.Name = "buttonAdd";
this.buttonAdd.Size = new System.Drawing.Size(109, 23);
this.buttonAdd.TabIndex = 12;
this.buttonAdd.Text = "Add New...";
this.buttonAdd.UseVisualStyleBackColor = true;
//
// buttonConfirm
//
this.buttonConfirm.Location = new System.Drawing.Point(309, 64);
this.buttonConfirm.Name = "buttonConfirm";
this.buttonConfirm.Size = new System.Drawing.Size(75, 23);
this.buttonConfirm.TabIndex = 11;
this.buttonConfirm.Text = "Confirm";
this.buttonConfirm.UseVisualStyleBackColor = true;
//
// buttonSearch
//
this.buttonSearch.Location = new System.Drawing.Point(309, 25);
this.buttonSearch.Name = "buttonSearch";
this.buttonSearch.Size = new System.Drawing.Size(75, 23);
this.buttonSearch.TabIndex = 9;
this.buttonSearch.Text = "Search";
this.buttonSearch.UseVisualStyleBackColor = true;
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(125, 25);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(138, 22);
this.textBox1.TabIndex = 7;
//
// comboBox1
//
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Items.AddRange(new object[] {
"21 Cash",
"22 Foreign Exchange",
"23 Credit Card"});
this.comboBox1.Location = new System.Drawing.Point(125, 66);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(155, 20);
this.comboBox1.TabIndex = 10;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("新細明體", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
this.label1.Location = new System.Drawing.Point(39, 22);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(58, 16);
this.label1.TabIndex = 8;
this.label1.Text = "Budget";
//
// Column1
//
this.Column1.DataPropertyName = "Budgno";
this.Column1.HeaderText = "預算項目編號";
this.Column1.Name = "Column1";
//
// Column2
//
this.Column2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.Column2.DataPropertyName = "Name";
this.Column2.HeaderText = "預算項目名稱";
this.Column2.Name = "Column2";
//
// FormBudget
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.buttonReset);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.buttonAdd);
this.Controls.Add(this.buttonConfirm);
this.Controls.Add(this.buttonSearch);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.comboBox1);
this.Controls.Add(this.label1);
this.Name = "FormBudget";
this.Text = "FormBudget";
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonReset;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.Button buttonAdd;
private System.Windows.Forms.Button buttonConfirm;
private System.Windows.Forms.Button buttonSearch;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.ComboBox comboBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
}
}