Ai
1 Star 0 Fork 1

Future_Code_Lab/FloatingWindow

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Program.cs 598 Bytes
一键复制 编辑 原始数据 按行查看 历史
Future_Code_Lab 提交于 2020-06-30 10:43 +08:00 . 添加项目文件。
using System;
using System.Windows.Forms;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Threading;
namespace FloatingWindow
{
internal sealed class Program
{
[DllImport("kernel32.dll")]
public static extern Boolean AllocConsole();
[STAThread]
private static void Main(string[] args)
{
/* #if DEBUG
AllocConsole();
#endif
*/
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/future_code_lab/FloatingWindow.git
git@gitee.com:future_code_lab/FloatingWindow.git
future_code_lab
FloatingWindow
FloatingWindow
originmaster

搜索帮助