2

我正在尝试用 C# 完成家庭作业课程。我应该将数据源添加到 Datagrid 视图控件。但是,在通用任务菜单下的 Sharp Develop 中,数据源对话框无法添加数据源。

这显然与 VS 的工作方式不同。有人可以帮我弄清楚如何在 SharpDevelop 中做到这一点吗?

4

1 回答 1

2

您可以使用显式绑定以编程方式添加数据源。例如,在FormLoad事件期间(引入显式 BindingSource):

    private System.Windows.Forms.DataGridView dataGridView1;
    private System.Windows.Forms.BindingSource bindingSource1;
    private System.Data.DataSet dataSet1;
    private System.Windows.Forms.Label label1;
//...
    private void Form1_Load(object sender, EventArgs e)
    {
        this.dataSet1.ReadXml("x2.xml");
        this.label1.Text = dataSet1.Tables[0].TableName;
        this.bindingSource1.DataSource = dataSet1.Tables[0];
        this.dataGridView1.DataSource = bindingSource1;
    }
于 2009-02-26T10:45:08.320 回答