namespace WinMultiForm { partial class frmMain { /// /// 設計工具所需的變數。 /// private System.ComponentModel.IContainer components = null; /// /// 清除任何使用中的資源。 /// /// 如果應該處置 Managed 資源則為 true,否則為 false。 protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form 設計工具產生的程式碼 /// /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改 /// 這個方法的內容。 /// private void InitializeComponent() { this.btnOpenCal = new System.Windows.Forms.Button(); this.btnOpen = new System.Windows.Forms.Button(); this.txtYear = new System.Windows.Forms.TextBox(); this.txtRate = new System.Windows.Forms.TextBox(); this.txtMoney = new System.Windows.Forms.TextBox(); this.lblShow = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // btnOpenCal // this.btnOpenCal.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOpenCal.Location = new System.Drawing.Point(339, 75); this.btnOpenCal.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.btnOpenCal.Name = "btnOpenCal"; this.btnOpenCal.Size = new System.Drawing.Size(120, 37); this.btnOpenCal.TabIndex = 26; this.btnOpenCal.Text = "使用小算盤"; this.btnOpenCal.UseVisualStyleBackColor = true; this.btnOpenCal.Click += new System.EventHandler(this.btnOpenCal_Click); // // btnOpen // this.btnOpen.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnOpen.Location = new System.Drawing.Point(339, 27); this.btnOpen.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.btnOpen.Name = "btnOpen"; this.btnOpen.Size = new System.Drawing.Size(120, 33); this.btnOpen.TabIndex = 25; this.btnOpen.Text = "開啟試算"; this.btnOpen.UseVisualStyleBackColor = true; this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click); // // txtYear // this.txtYear.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtYear.Location = new System.Drawing.Point(212, 129); this.txtYear.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.txtYear.Name = "txtYear"; this.txtYear.Size = new System.Drawing.Size(100, 28); this.txtYear.TabIndex = 24; // // txtRate // this.txtRate.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtRate.Location = new System.Drawing.Point(212, 74); this.txtRate.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.txtRate.Name = "txtRate"; this.txtRate.Size = new System.Drawing.Size(100, 28); this.txtRate.TabIndex = 23; // // txtMoney // this.txtMoney.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtMoney.Location = new System.Drawing.Point(212, 24); this.txtMoney.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2); this.txtMoney.Name = "txtMoney"; this.txtMoney.Size = new System.Drawing.Size(100, 28); this.txtMoney.TabIndex = 22; // // lblShow // this.lblShow.AutoSize = true; this.lblShow.Font = new System.Drawing.Font("Times New Roman", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblShow.Location = new System.Drawing.Point(47, 183); this.lblShow.Name = "lblShow"; this.lblShow.Size = new System.Drawing.Size(53, 21); this.lblShow.TabIndex = 21; this.lblShow.Text = "label4"; // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.Location = new System.Drawing.Point(47, 133); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(155, 24); this.label3.TabIndex = 20; this.label3.Text = "年後頷回本利(年)"; // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.Location = new System.Drawing.Point(47, 75); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(132, 24); this.label2.TabIndex = 19; this.label2.Text = "輸入年利率(%)"; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(47, 27); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(136, 24); this.label1.TabIndex = 18; this.label1.Text = "請輸入本金(元)"; // // frmMain // this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(540, 262); this.Controls.Add(this.btnOpenCal); this.Controls.Add(this.btnOpen); this.Controls.Add(this.txtYear); this.Controls.Add(this.txtRate); this.Controls.Add(this.txtMoney); this.Controls.Add(this.lblShow); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Name = "frmMain"; this.Text = "複利率本利和試算"; this.Load += new System.EventHandler(this.frmMain_Load); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnOpenCal; private System.Windows.Forms.Button btnOpen; private System.Windows.Forms.TextBox txtYear; private System.Windows.Forms.TextBox txtRate; private System.Windows.Forms.TextBox txtMoney; private System.Windows.Forms.Label lblShow; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label1; } }