|
新手写的进制转换器(写的很笨)(6) this.label3.Size = new System.Drawing.Size(88, 24); this.label3.TabIndex = 0; this.label3.Text = "十进制"; // // label6 // this.label6.Location = new System.Drawing.Point(88, 304); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(208, 16); this.label6.TabIndex = 2; // // timer1 // this.timer1.Tick += new System.EventHandler(this.timer1_Tick); // // Form1 // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.ClientSize = new System.Drawing.Size(342, 323); this.Controls.Add(this.label6); this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox1); this.Name = "Form1"; this.Text = "数据转换器"; this.Load += new System.EventHandler(this.Form1_Load); this.groupBox1.ResumeLayout(false); this.groupBox2.ResumeLayout(false); this.ResumeLayout(false); } #endregion /// <summary> /// 应用程序的主入口点。 /// </summary> /// string str; [STAThread] static void Main() { Application.Run(new Form1()); } private void Form1_Load(object sender, System.EventArgs e) { timer1.Start(); } //调用系统时间
|