Files
WPF_Practice/PacticeSolution/Capture/OptionContext.cs
2023-09-27 10:41:35 +09:00

18 lines
435 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace Capture
{
public class OptionContext
{
public int ButtonHeight { get; set; } = 20;
public int CloseButtonWidth { get; set; } = 20;
public Brush FrameColor { get; set; } = Brushes.Red;
public int FrameThickness { get; set; } = 2;
}
}