https://github.com/systemlight/t-sharpform
:lock: :package: More comprehensive '. Net5 WinForm' development template【更加全面的. Net5 WinForm开发模板】
https://github.com/systemlight/t-sharpform
Last synced: about 1 year ago
JSON representation
:lock: :package: More comprehensive '. Net5 WinForm' development template【更加全面的. Net5 WinForm开发模板】
- Host: GitHub
- URL: https://github.com/systemlight/t-sharpform
- Owner: SystemLight
- License: mit
- Created: 2021-03-05T02:50:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-05T03:07:17.000Z (about 5 years ago)
- Last Synced: 2025-01-13T14:23:56.134Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SharpForm
更加全面的.Net5 WinForm开发模板
## 技术栈
#### 核心环境
- [ ] .Net5 (Sdk=Microsoft.NET.Sdk)
## 目录结构
| 文件名 | 作用 |
| :---- | :---- |
| Components | 组件目录 |
| Forms | 窗体目录 |
| Program.cs | 核心程序入口文件 |
## 注释规范
1. 代码块注释
```c#
#region 代码块说明
/*
代码块内容
*/
#endregion
```
2. 功能解释注释
```c#
/*
解释说明内容:
*/
```
3. 单行逻辑注释
```c#
// 功能说明
app.UseRouting();
```