Browse Source

Improved font settings

pull/5940/head
2dust 4 weeks ago
parent
commit
1273d2aee1
  1. 1
      v2rayN/ServiceLib/Enums/EViewAction.cs
  2. 2
      v2rayN/ServiceLib/ViewModels/OptionSettingViewModel.cs
  3. 19
      v2rayN/v2rayN/Views/OptionSettingWindow.xaml.cs

1
v2rayN/ServiceLib/Enums/EViewAction.cs

@ -19,6 +19,7 @@
Shutdown,
BrowseServer,
ImportRulesFromFile,
InitSettingFont,
SubEditWindow,
RoutingRuleSettingWindow,
RoutingRuleDetailsWindow,

2
v2rayN/ServiceLib/ViewModels/OptionSettingViewModel.cs

@ -117,6 +117,8 @@ namespace ServiceLib.ViewModels
private async Task Init()
{
await _updateView?.Invoke(EViewAction.InitSettingFont, null);
#region Core
var inbound = _config.Inbound[0];

19
v2rayN/v2rayN/Views/OptionSettingWindow.xaml.cs

@ -17,7 +17,6 @@ namespace v2rayN.Views
this.Owner = Application.Current.MainWindow;
_config = AppHandler.Instance.Config;
var lstFonts = GetFonts(Utils.GetFontsPath());
ViewModel = new OptionSettingViewModel(UpdateViewHandler);
@ -102,9 +101,6 @@ namespace v2rayN.Views
cmbMainGirdOrientation.Items.Add(it.ToString());
}
lstFonts.ForEach(it => { cmbcurrentFontFamily.Items.Add(it); });
cmbcurrentFontFamily.Items.Add(string.Empty);
this.WhenActivated(disposables =>
{
this.Bind(ViewModel, vm => vm.localPort, v => v.txtlocalPort.Text).DisposeWith(disposables);
@ -191,11 +187,22 @@ namespace v2rayN.Views
WindowsUtils.SetAutoRun(Global.AutoRunRegPath, Global.AutoRunName, togAutoRun.IsChecked ?? false);
this.DialogResult = true;
break;
case EViewAction.InitSettingFont:
await InitSettingFont();
break;
}
return await Task.FromResult(true);
}
private List<string> GetFonts(string path)
private async Task InitSettingFont()
{
var lstFonts = await GetFonts(Utils.GetFontsPath());
lstFonts.ForEach(it => { cmbcurrentFontFamily.Items.Add(it); });
cmbcurrentFontFamily.Items.Add(string.Empty);
}
private async Task<List<string>> GetFonts(string path)
{
var lstFonts = new List<string>();
try
@ -241,7 +248,7 @@ namespace v2rayN.Views
{
Logging.SaveLog("fill fonts error", ex);
}
return lstFonts;
return lstFonts.OrderBy(t => t).ToList();
}
private void ClbdestOverride_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)

Loading…
Cancel
Save