mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-03 00:00:57 +08:00
11 lines
351 B
C#
11 lines
351 B
C#
namespace FluentTest.ViewModels
|
|
{
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
|
|
public class FontsViewModel : ViewModel
|
|
{
|
|
public ObservableCollection<string> FontsData { get; } = new ObservableCollection<string>(System.Windows.Media.Fonts.SystemFontFamilies.Select(fontFamily => fontFamily.ToString()));
|
|
}
|
|
}
|