在代码的编写过程中,怎么样能够实现
在类和抽象方法中,定义了数据的计算,我想将计算的数据在窗体中输出,比如说textBox或者richtextBox
(我的意图就是,以前在代码运行中,总是用控制台程序,但是控制台程序的窗体黑乎乎的,看不请楚,我想转为用窗体输出,最好是richtextBox所以,就想将数据计算,与窗体进行数据交流,但是无法实现,请高手帮忙回答一下,问题出在那里?怎么样解决)
代码如下:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace Class_test
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Label label1;
public System.Windows.Forms.TextBox textBox1;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
public void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// label1
//
this.label1.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
this.label1.Location = new System.Drawing.Point(8, 48);
this.label1.Name = "label1";
this.label1.TabIndex = 0;
this.label1.Text = "结果输出窗口";
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(8, 104);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(168, 21);
this.textBox1.TabIndex = 1;
this.textBox1.Text = "textBox1";
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
abstract class class1
{
abstract public void test();
}
class class2 : class1
{
public override void test()
{
//Console.WriteLine("class2");
//下面的代码没有办法实现,textBox后面的 text属性无法显示出来
textBox1.Text = "Convert.ToString(class2)";
}
}
class class3 : class2
{
/*public void test()
{
Console.WriteLine("class3");
}*/
}
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
class3 d = new class3();
d.test();
Console.Read();
}
}
}