1
0

Create Init.cs

This commit is contained in:
2026-02-26 01:05:27 +03:00
parent 3b6b8368ea
commit 9785133176

11
DrawFigureLibrary/Init.cs Normal file
View File

@@ -0,0 +1,11 @@
using System.Windows.Controls;
using System.Windows.Media;
namespace DrawFigureLibrary
{
public static class Init
{
public static Pen pen { get; } = new Pen(Brushes.Black, 2);
public static Image? DrawingImage { get; set; }
}
}