修复Icon类型命名空间引用问题

- 添加System.Drawing引用以解决Icon类型找不到的问题
- Icon和Image类都需要System.Drawing命名空间

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Developer 2025-11-20 15:17:45 +08:00
parent e3abf26803
commit d390e29524

View File

@ -1,4 +1,5 @@
using System; using System;
using System.Drawing;
using System.Windows.Forms; using System.Windows.Forms;
namespace WinFormsAppTemplate namespace WinFormsAppTemplate