-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathProgram.cs
More file actions
32 lines (30 loc) · 1.03 KB
/
Copy pathProgram.cs
File metadata and controls
32 lines (30 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*基于FaceCat(捂脸猫)框架 v1.0 https://github.com/FaceCat007/facecat.git
* 1.捂脸猫创始人-矿洞程序员-上海宁米科技创始人-脉脉KOL-陶德 (微信号:suade1984);
* 2.联合创始人-上海宁米科技创始人-袁立涛(微信号:wx627378127);
* 3.恒泰期货投资咨询总监/高级研究员-戴俊生(微信号:18345063201);
* 4.联合创始人-肖添龙(微信号:xiaotianlong_luu);
*/
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using FaceCat;
using System.Runtime.InteropServices;
namespace FaceCat
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
DataCenter.startService();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
FCMainForm mainFrom = new FCMainForm();
mainFrom.loadXml("MainFrame");
Application.Run(mainFrom);
}
}
}