桌面环境:增加环境变量APP并给Paint应用程序增加更多画图工具

This commit is contained in:
2026-03-25 20:08:10 +08:00
parent a0eaf70304
commit a8ac9384c6
11 changed files with 519 additions and 3 deletions

View File

@@ -31,7 +31,12 @@ namespace CMLeonOS.Gui.Apps.Paint
internal readonly List<Tool> Tools = new List<Tool>()
{
new Tools.Pencil(),
new Tools.CircleBrush()
new Tools.CircleBrush(),
new Tools.Eraser(),
new Tools.LineTool(),
new Tools.RectangleTool(),
new Tools.FilledRectangleTool(),
new Tools.FilledCircleTool()
};
private void TableClicked(int x, int y)