请问自定义的类为什么不能访问WINDOWS控件
在窗口设计器里有一个label1,在自定义的类创建对象后无法对WINOWS控件进行操作是什么原因?using System;
using System.Collections.Generic;
using System.Text;
using
using
using System.Collections;
using System.Threading;
using System.Drawing;
using System.Windows.Forms;
namespace xj
{
public class show
{
public void changeTxt()
{
label1.text="hello";
}
}
public partial class MainForm : Form
{
public MainForm()
{
bt=new show();
bt.changeTxt();
}
}
}