添加项目文件。

This commit is contained in:
liang123456a
2025-09-04 11:25:09 +08:00
parent e4bcaa7336
commit a1301ee8ce
7 changed files with 787 additions and 0 deletions

19
WinFormsApp1/Program.cs Normal file
View File

@@ -0,0 +1,19 @@
using WinFormDataGridViewDemo;
namespace WinFormsApp1
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}