0

我的程序是这样的:我有一个类的公共“主要方法”,它有一个带有值的数据表。我希望当用户按下特定按钮时,我将使用类(公共类名())的“主方法”中的数据表计算按钮事件。反正有这样做吗?

4

1 回答 1

1

这是一个简单的例子:

using System.Data;
...
namespace WindowsFormsApplication1
{


    public partial class Form1 : Form
    {
        DataTable dt;

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

            dt = new DataTable();
            //load your table here
            ...
        }
        // Create an event (maybe via the designer) for button click...
        private void button1_Click(object sender, EventArgs e)
        {
            //you can reference the datatable here, for example tell how many rows it has
            MessageBox.Show(dt.Rows.Count.ToString());
            ...
        }
于 2013-09-26T01:09:21.517 回答