From 671ce8faeec06e9218b97248aa0b9cd3711478c6 Mon Sep 17 00:00:00 2001 From: gitee-bot Date: Fri, 12 Jun 2026 23:57:43 +0000 Subject: [PATCH] Add README.md --- README.en.md | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 106 insertions(+) create mode 100644 README.en.md create mode 100644 README.md diff --git a/README.en.md b/README.en.md new file mode 100644 index 0000000..0882153 --- /dev/null +++ b/README.en.md @@ -0,0 +1,53 @@ +# wpfy + +## Project Overview + +wpfy is a .NET desktop application project based on Windows Presentation Foundation (WPF). + +## Technology Stack + +- Windows Presentation Foundation (WPF) +- .NET Framework / .NET Core / .NET 5+ +- C# + +## Prerequisites + +- Windows operating system +- .NET SDK (recommended .NET 6.0 or higher) +- Visual Studio or VS Code (with C# extension) + +## Installation + +```bash +# Clone the repository +git clone https://gitee.com/kuapinginternet/wpfy.git + +# Enter the project directory +cd wpfy + +# Restore dependencies +dotnet restore +``` + +## Running the Application + +```bash +dotnet run +``` + +## Project Structure + +``` +wpfy/ +├── [Source files] +└── LICENSE +``` + +## License + +For detailed license information, please refer to the LICENSE file. + +## Related Links + +- Project Homepage: https://gitee.com/kuapinginternet/wpfy +- Issue Feedback: https://gitee.com/kuapinginternet/wpfy/issues \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e802af2 --- /dev/null +++ b/README.md @@ -0,0 +1,53 @@ +# wpfy + +## 项目简介 + +wpfy 是一个基于 Windows Presentation Foundation (WPF) 的 .NET 桌面应用程序项目。 + +## 技术栈 + +- Windows Presentation Foundation (WPF) +- .NET Framework / .NET Core / .NET 5+ +- C# + +## erequisites + +- Windows 操作系统 +- .NET SDK (建议 .NET 6.0 或更高版本) +- Visual Studio 或 VS Code (带 C# 扩展) + +## 安装 + +```bash +# 克隆仓库 +git clone https://gitee.com/kuapinginternet/wpfy.git + +# 进入项目目录 +cd wpfy + +# 还原依赖 +dotnet restore +``` + +## 运行 + +```bash +dotnet run +``` + +## 项目结构 + +``` +wpfy/ +├── [源代码文件] +└── LICENSE +``` + +## 许可证 + +具体许可证信息请查看 LICENSE 文件。 + +## 相关链接 + +- 项目主页: https://gitee.com/kuapinginternet/wpfy +- 问题反馈: https://gitee.com/kuapinginternet/wpfy/issues \ No newline at end of file -- Gitee