mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-06 09:40:50 +08:00
19 lines
340 B
C#
19 lines
340 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Text;
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
|
{
|
|
public enum BrushType
|
|
{
|
|
None,
|
|
SolidColorBrush,
|
|
LinearGradientBrush,
|
|
RadialGradientBrush,
|
|
ImageBrush,
|
|
VisualBrush,
|
|
DrawingBrush
|
|
}
|
|
}
|