我在 c# 中创建一个表单,因此任何新表单都继承了内置类的属性 From 我还创建了一个名为 program 的类,它开始与我的数据库的连接我希望我的所有表单都继承它,因为我不想打开我无法使用接口的每个表单都有一个新连接,因为程序包含 main() 在其中创建连接我的程序类是
class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
MySqlConnection myConnection = new MySqlConnection("Server=instance2813231.db.xeround.com;Port=18422;Database=shares info;Uid=user;Pwd=password;");
MySqlCommand command = myConnection.CreateCommand();
try
{
myConnection.Open();
MessageBox.Show("connected");
}
catch (Exception a)
{
Console.WriteLine(a.ToString());
MessageBox.Show("Failed");
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
我怎样才能解决这个问题?