12 lines
277 B
C#
12 lines
277 B
C#
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; }
|
|
}
|
|
}
|