?? 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 + -