箭头分离到独立的model中,方便自定义path

This commit is contained in:
艾竹
2023-01-26 18:27:17 +08:00
parent f11a4170d8
commit 9bb6c6d321
42 changed files with 993 additions and 299 deletions

View File

@@ -0,0 +1,27 @@
using System.ComponentModel;
using System.Windows;
using System.Windows.Media;
namespace AIStudio.Wpf.DiagramDesigner
{
public interface IFontViewModel
{
string FontFamily { get; set; }
Color FontColor { get; set; }
double FontSize { get; set; }
Color TextEffectColor { get; set; }
Color HighlightColor { get; set; }
FontCase FontCase { get; set; }
FontWeight FontWeight { get; set; }
FontStyle FontStyle { get; set; }
FontStretch FontStretch { get; set; }
bool Underline { get; set; }
bool Strikethrough { get; set; }
bool OverLine { get; set; }
HorizontalAlignment HorizontalAlignment { get; set; }
VerticalAlignment VerticalAlignment { get; set; }
double LineHeight { get; set; }
event PropertyChangedEventHandler PropertyChanged;
}
}