重命名和补回i18n
This commit is contained in:
@@ -2577,4 +2577,10 @@ Hide</value>
|
||||
<data name="Startup_UIAccessTopMostHint_1" xml:space="preserve">
|
||||
<value>Use UIA method to achieve topmost, requires administrator privileges</value>
|
||||
</data>
|
||||
<data name="Canvas_LaunchSeewoVideoShowcaseForWhiteboardBooth" xml:space="preserve">
|
||||
<value>Whiteboard booth opens Seewo Video Showcase</value>
|
||||
</data>
|
||||
<data name="Canvas_LaunchSeewoVideoShowcaseForWhiteboardBoothHint" xml:space="preserve">
|
||||
<value>When enabled, the whiteboard toolbar Booth button launches Seewo Video Showcase (must be installed). When disabled, the built-in booth is used.</value>
|
||||
</data>
|
||||
</root>
|
||||
@@ -2620,4 +2620,10 @@
|
||||
<data name="Startup_UIAccessTopMostHint_1" xml:space="preserve">
|
||||
<value>使用UIA方式实现置顶,需要管理员权限</value>
|
||||
</data>
|
||||
<data name="Canvas_LaunchSeewoVideoShowcaseForWhiteboardBooth" xml:space="preserve">
|
||||
<value>白板展台按钮启动希沃视频展台</value>
|
||||
</data>
|
||||
<data name="Canvas_LaunchSeewoVideoShowcaseForWhiteboardBoothHint" xml:space="preserve">
|
||||
<value>开启后,点击白板工具栏「展台」将打开希沃视频展台(需已安装);关闭则使用内置展台。</value>
|
||||
</data>
|
||||
</root>
|
||||
+2
-2
@@ -1,4 +1,4 @@
|
||||
<Page x:Class="Ink_Canvas.Windows.SettingsViews2.Pages.NewSettingStartup"
|
||||
<Page x:Class="Ink_Canvas.Windows.SettingsViews2.Pages.StartupPage"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
@@ -126,4 +126,4 @@
|
||||
</ikw:SimpleStackPanel>
|
||||
</Grid>
|
||||
</ScrollViewer>
|
||||
</Page>
|
||||
</Page>
|
||||
+5
-5
@@ -5,19 +5,19 @@ using System.Windows.Controls;
|
||||
namespace Ink_Canvas.Windows.SettingsViews2.Pages
|
||||
{
|
||||
/// <summary>
|
||||
/// NewSettingStartup.xaml 的交互逻辑
|
||||
/// StartupPage.xaml 的交互逻辑
|
||||
/// </summary>
|
||||
public partial class NewSettingStartup : Page
|
||||
public partial class StartupPage : Page
|
||||
{
|
||||
private bool _isLoaded = false;
|
||||
|
||||
public NewSettingStartup()
|
||||
public StartupPage()
|
||||
{
|
||||
InitializeComponent();
|
||||
Loaded += NewSettingStartup_Loaded;
|
||||
Loaded += StartupPage_Loaded;
|
||||
}
|
||||
|
||||
private void NewSettingStartup_Loaded(object sender, RoutedEventArgs e)
|
||||
private void StartupPage_Loaded(object sender, RoutedEventArgs e)
|
||||
{
|
||||
LoadSettings();
|
||||
_isLoaded = true;
|
||||
@@ -136,7 +136,7 @@
|
||||
</ui:NavigationViewItem.Icon>
|
||||
<ui:NavigationViewItem.MenuItems>
|
||||
<ui:NavigationViewItem
|
||||
x:Name="NewSettingStartupItem"
|
||||
x:Name="StartupPageItem"
|
||||
Content="启动"
|
||||
Tag="StartupPage"
|
||||
ToolTipService.ToolTip="启动设置">
|
||||
|
||||
@@ -58,7 +58,7 @@ namespace Ink_Canvas.Windows.SettingsViews2
|
||||
{ "ThemePage", typeof(ThemePage) },
|
||||
{ "ColorsPage", typeof(ColorsPage) },
|
||||
{ "FontsPage", typeof(FontsPage) },
|
||||
{ "StartupPage", typeof(NewSettingStartup) },
|
||||
{ "StartupPage", typeof(StartupPage) },
|
||||
{ "AboutPage", typeof(AboutPage) },
|
||||
{ "Settings", typeof(SettingsPage) }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user