📄 program.cs
字号:
/*
*--------------------------------------------------------
* Class Name(类名): Program
* Author(创建者): 三角猫
* Email(电子邮件): alex_zzg@163.com
* Create Time(创建时间): 2008/11/15 19:27:18
* CLR Version(CLR版本): 2.0.50727.312
* Copyright (c) 三角猫 www.zu14.cn
* All Rights Reserved.
* File Memo(备注):
*--------------------------------------------------------
*/
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace QQAutoMsg
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormAutoMsg());
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -