https://github.com/0xff-dev/winformdemo
C# Demo
https://github.com/0xff-dev/winformdemo
Last synced: about 2 months ago
JSON representation
C# Demo
- Host: GitHub
- URL: https://github.com/0xff-dev/winformdemo
- Owner: 0xff-dev
- Created: 2018-05-05T05:00:01.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-05T11:56:53.000Z (about 7 years ago)
- Last Synced: 2025-02-02T08:27:26.245Z (4 months ago)
- Language: C#
- Homepage:
- Size: 109 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Simple Grade System
## Requirements
1. linux system
2. mono
3. Don't need IDE
4. MySQl [How to connect mysql by c#](http://www.coderzs.top/2018/04/20/mysql_ssl/)## Functions
1. 后台添加老师的数据,登录信息,课程信息
2. 教师登录
3. 学生的成绩情况及分析## Screenshot
### Login
### MainWindow
### Analysis
### Others in images folder
## Compile Program
1. mcs /t:library `cat pdll` Program.cs## Form, MainWindow, Model, Common编译为动态链接库
1. mcs /t:library `cat Modeldll` Model.cs
2. mcs /t:library `cat Formdll` Form.cs
3. mcs /t:library `cat Maindll` MainWindow.cs
4. mcs /t:library Common.cs