program.cs
来自「社区管理系统」· CS 代码 · 共 34 行
CS
34 行
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 + =
减小字号Ctrl + -
显示快捷键?