mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
22 lines
523 B
C#
22 lines
523 B
C#
|
|
namespace Wox.Plugin.ControlPanel
|
|||
|
|
{
|
|||
|
|
public class ControlPanelSettingsViewModel : BaseModel
|
|||
|
|
{
|
|||
|
|
private readonly Settings _settings;
|
|||
|
|
|
|||
|
|
public ControlPanelSettingsViewModel(Settings settings)
|
|||
|
|
{
|
|||
|
|
_settings = settings;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public bool ShouldUsePinYin
|
|||
|
|
{
|
|||
|
|
get { return _settings.ShouldUsePinYin; }
|
|||
|
|
set
|
|||
|
|
{
|
|||
|
|
_settings.ShouldUsePinYin = value;
|
|||
|
|
this.OnPropertyChanged();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|