Files
WechatBakTool/ViewModel/WordCloudSettingViewModel.cs
Suxue 6234ad3084 v0.9.6.0 Release!
1.新增词云功能,导出时选择与他的词云即可。
2.修复公钥头推断失败BUG
3.修复创建工作区与已有工作区切换不成功BUG
2023-12-15 22:48:40 +08:00

34 lines
802 B
C#

using CommunityToolkit.Mvvm.ComponentModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WechatBakTool.ViewModel
{
public partial class WordCloudSettingViewModel : ObservableObject
{
[ObservableProperty]
private string imgHeight = "";
[ObservableProperty]
private string imgWidth = "";
[ObservableProperty]
private bool enableRemoveOneKey = true;
[ObservableProperty]
private string removeKey = "";
[ObservableProperty]
private int maxKeyCount = 200;
[ObservableProperty]
private string font = "微软雅黑";
[ObservableProperty]
private List<string> fontList = new List<string>();
}
}