You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kev/Drawer/UCDraw/WpfSketch/ExtendControls.cs

36 lines
743 B
C#

1 month ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Media;
using System.Windows.Media.Animation;
namespace WpfSketch
{
enum ColorPickerButtonSize
{
Small,
Middle,
Large
}
internal class ColorPicker
{
1 month ago
public System.Windows.Media.Brush Foreground { get; set; } = new SolidColorBrush(Colors.Red);
1 month ago
public bool IsActived
{
get;
set;
}
1 month ago
public System.Drawing.Color BackgroundColor { get; set; }
1 month ago
public ColorPickerButtonSize Size
{
get;
set;
}
}
}