using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
if (textBox1.Text == "Click")
{
button1.PerformClick();
}
}
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("Hello");
}
}
}
http://zhidao.baidu.com/question/422221635.html?quesup2&oldq=1
http://zhidao.baidu.com/question/419202130.html?quesup2&oldq=1
http://zhidao.baidu.com/question/328504703.html?quesup2&oldq=1
http://zhidao.baidu.com/question/325094712.html?quesup2&oldq=1
2012-06-01