2021-07-23 09:42:22 +08:00
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using System.Windows;
|
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
|
|
2022-10-28 22:45:39 +08:00
|
|
|
|
namespace AIStudio.Wpf.DiagramDesigner
|
2021-07-23 09:42:22 +08:00
|
|
|
|
{
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|