发表评论
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。
using Microsoft.Data.ConnectionUI;
private void button1_Click(object sender, EventArgs e)
{
DataConnectionDialog dlg = new DataConnectionDialog();
dlg.DataSources.Add(DataSource.SqlDataSource);
dlg.SelectedDataProvider = DataProvider.SqlDataProvider;
DataConnectionDialog.Show(dlg, this);
}
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。