diff --git a/Ink Canvas/Windows/OobeWindow.xaml b/Ink Canvas/Windows/OobeWindow.xaml index 963d4fd0..7ab5ce7a 100644 --- a/Ink Canvas/Windows/OobeWindow.xaml +++ b/Ink Canvas/Windows/OobeWindow.xaml @@ -274,7 +274,7 @@ Margin="0,4,0,0" FontSize="13" Foreground="{DynamicResource SettingsPageForeground}" - Content="在主界面底部显示快速工具栏(计时器、点名等)" /> + Content="启用快速面板(计时器、点名等)" /> @@ -403,11 +403,6 @@ FontSize="13" Foreground="{DynamicResource SettingsPageForeground}" Content="启用悬浮窗拦截(拦截希沃、鸿合等课堂软件的悬浮窗,避免遮挡画板)" /> - diff --git a/Ink Canvas/Windows/OobeWindow.xaml.cs b/Ink Canvas/Windows/OobeWindow.xaml.cs index 1f382f1b..e4ff5447 100644 --- a/Ink Canvas/Windows/OobeWindow.xaml.cs +++ b/Ink Canvas/Windows/OobeWindow.xaml.cs @@ -177,7 +177,6 @@ namespace Ink_Canvas.Windows if (_settings.Automation.FloatingWindowInterceptor != null) { CheckBoxFloatingWindowInterceptorEnabled.IsChecked = _settings.Automation.FloatingWindowInterceptor.IsEnabled; - CheckBoxFloatingWindowInterceptorAutoStart.IsChecked = _settings.Automation.FloatingWindowInterceptor.AutoStart; } } } @@ -366,7 +365,6 @@ namespace Ink_Canvas.Windows if (_settings.Automation.FloatingWindowInterceptor != null) { _settings.Automation.FloatingWindowInterceptor.IsEnabled = CheckBoxFloatingWindowInterceptorEnabled.IsChecked == true; - _settings.Automation.FloatingWindowInterceptor.AutoStart = CheckBoxFloatingWindowInterceptorAutoStart.IsChecked == true; } } }