⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 program.cs

📁 社区管理系统
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;
using DataBaseManagerLibrary;
namespace CommunityManagementSystem
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main()
        {
            //初始化数据库管理类实例
            String SqlConnectInfo = "server=localhost;database=CommnityManagementSystem;uid=sa;pwd=''";
            DataBaseManager DBManager = new DataBaseManager(SqlConnectInfo);

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            //显示登陆界面
            //Application.Run(new MainForm(DBManager));
            //Application.Run(new tenementDemo(DBM));
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new MainForm(DBManager));
        }
    }

  
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -