|
C#编写的windows计算器-源代码(9) this.c.ForeColor = System.Drawing.Color.Red; this.c.Location = new System.Drawing.Point(178, 48); this.c.Name = "c"; this.c.Size = new System.Drawing.Size(36, 61); this.c.TabIndex = 41; this.c.Text = "C"; this.c.Click += new System.EventHandler(this.btn_Oper); // // ce // this.ce.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.ce.ForeColor = System.Drawing.Color.Red; this.ce.Location = new System.Drawing.Point(138, 16); this.ce.Name = "ce"; this.ce.Size = new System.Drawing.Size(76, 29); this.ce.TabIndex = 40; this.ce.Text = "CE"; this.ce.Click += new System.EventHandler(this.btn_Oper); //
|