C#.NET根据textBox的textChange事件,通过委托再去触发其他的按钮 代码要怎么写

问题已解决
2025-01-04 11:01:47
推荐回答(4个)
回答1:

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");

        }

    }

}

回答2:

我来写点,你选个最佳什么的把这个关闭了,然后我有好多问题没人回答,麻烦你去写点,我也选个最佳什么的把问题处理了!
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

回答3:

它绑定,检查,收集或数据集类,它可以指定ComboBox的数据源,然后调用DataBind()方法可以

回答4:

双击控件 就进事件了