2023-01-10 10:43:32 +00:00
|
|
|
|
<pu:WindowX x:Class="VPet_Simulator.Windows.winGameSetting"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
xmlns:ll="clr-namespace:LinePutScript.Localization.WPF;assembly=LinePutScript.Localization.WPF"
|
2023-01-10 10:43:32 +00:00
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:VPet_Simulator.Windows"
|
2023-01-24 06:56:16 +00:00
|
|
|
|
xmlns:pu="clr-namespace:Panuon.WPF.UI;assembly=Panuon.WPF.UI"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
xmlns:system="clr-namespace:System;assembly=mscorlib" mc:Ignorable="d" Title="{ll:Str 设置}"
|
2023-01-10 10:43:32 +00:00
|
|
|
|
Style="{DynamicResource BaseWindowXStyle}" WindowStartupLocation="CenterScreen" Closing="WindowX_Closing"
|
2023-03-13 15:40:04 +00:00
|
|
|
|
Width="500" Height="550" FontSize="16">
|
2023-02-27 12:29:40 +00:00
|
|
|
|
<!--<pu:WindowX.Resources>
|
|
|
|
|
<DataTemplate x:Key="DIYDataTemplate">
|
|
|
|
|
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</pu:WindowX.Resources>-->
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<Grid>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<TabControl x:Name="MainTab" Margin="5" BorderThickness="0" pu:TabControlHelper.ItemsHeight="NaN"
|
|
|
|
|
Background="Transparent" pu:TabControlHelper.ItemsPadding="10,7"
|
|
|
|
|
pu:TabControlHelper.ItemsCornerRadius="4"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
pu:TabControlHelper.ItemsHoverBackground="{DynamicResource PrimaryLight}"
|
|
|
|
|
pu:TabControlHelper.ItemsSelectedBackground="{DynamicResource PrimaryDark}"
|
|
|
|
|
pu:TabControlHelper.ItemsSelectedForeground="{DynamicResource DARKPrimaryText}"
|
|
|
|
|
Foreground="{DynamicResource PrimaryText}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<TabControl.ContentTemplate>
|
|
|
|
|
<DataTemplate>
|
|
|
|
|
<Border Margin="5,10,5,20" CornerRadius="15" Background="{DynamicResource DARKPrimaryText}">
|
|
|
|
|
<ContentControl Content="{Binding}" Margin="15,10" />
|
|
|
|
|
</Border>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
</TabControl.ContentTemplate>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TabItem Header="{ll:Str 图形}" Foreground="{DynamicResource PrimaryText}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
BorderBrush="{DynamicResource PrimaryDarker}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
|
<ColumnDefinition Width="15" />
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
2023-05-19 08:17:51 +00:00
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
|
</Grid.RowDefinitions>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Text="{ll:Str 置于顶层}" VerticalAlignment="Center" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<pu:Switch x:Name="TopMostBox" Grid.Column="2" BorderBrush="{DynamicResource PrimaryDark}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
CheckedBackground="{DynamicResource Primary}" CheckedBorderBrush="{DynamicResource Primary}"
|
|
|
|
|
Background="Transparent" BoxWidth="35" BoxHeight="18" ToggleSize="14"
|
|
|
|
|
ToggleShadowColor="{x:Null}" ToggleBrush="{DynamicResource PrimaryDark}"
|
|
|
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}" Checked="TopMostBox_Checked"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Unchecked="TopMostBox_Unchecked" ToolTip="{ll:Str 将桌宠置于顶层}" />
|
|
|
|
|
<TextBlock Grid.Row="1" Text="{ll:Str 更高缩放}" VerticalAlignment="Center" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<pu:Switch x:Name="FullScreenBox" Grid.Row="1" Grid.Column="2"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
BorderBrush="{DynamicResource PrimaryDark}" CheckedBackground="{DynamicResource Primary}"
|
|
|
|
|
CheckedBorderBrush="{DynamicResource Primary}" Background="Transparent" BoxWidth="35"
|
|
|
|
|
BoxHeight="18" ToggleSize="14" ToggleShadowColor="{x:Null}"
|
|
|
|
|
ToggleBrush="{DynamicResource PrimaryDark}"
|
|
|
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}" Checked="FullScreenBox_Check"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Unchecked="FullScreenBox_Check" ToolTip="{ll:Str 解锁缩放限制}" />
|
|
|
|
|
<TextBlock Grid.Row="2" Text="{ll:Str 缩放等级}" VerticalAlignment="Center" />
|
2023-01-23 17:31:16 +00:00
|
|
|
|
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<Grid Grid.Column="2" Grid.Row="2">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Slider TickFrequency="0.05" IsSnapToTickEnabled="True" x:Name="ZoomSlider"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Style="{DynamicResource StandardSliderStyle}" VerticalAlignment="Center" Maximum="3"
|
|
|
|
|
SmallChange=".05" Minimum="0.5" LargeChange=".1" Value="1"
|
|
|
|
|
PreviewMouseUp="ZoomSlider_MouseUp" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<TextBlock Grid.Column="1" Margin="15,0,0,0" VerticalAlignment="Center"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Text="{Binding ElementName=ZoomSlider,Path=Value,StringFormat=f2}" FontSize="18"
|
|
|
|
|
Foreground="{DynamicResource DARKPrimaryDarker}" FontWeight="Bold" Background="{x:Null}" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</Grid>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Grid.Row="3" Text="{ll:Str 主题}" VerticalAlignment="Center" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBox x:Name="ThemeBox" Grid.Row="3" Grid.Column="2"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
SelectionChanged="ThemeBox_SelectionChanged" IsEnabled="False"
|
|
|
|
|
Style="{DynamicResource StandardComboBoxStyle}" Margin="0,3,0,2" FontSize="16" />
|
2023-01-23 17:31:16 +00:00
|
|
|
|
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Grid.Row="4" Text="{ll:Str 字体}" VerticalAlignment="Center" />
|
2023-05-19 08:17:51 +00:00
|
|
|
|
<ComboBox x:Name="FontBox" Grid.Row="4" Grid.Column="2" SelectionChanged="FontBox_SelectionChanged"
|
|
|
|
|
IsEnabled="False" Style="{DynamicResource StandardComboBoxStyle}" FontSize="16"
|
|
|
|
|
Margin="0,2,0,3" />
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Grid.Row="5" Text="{ll:Str 启动位置}" VerticalAlignment="Center" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<Grid Grid.Row="5" Grid.Column="2">
|
2023-04-03 18:11:12 +00:00
|
|
|
|
<Grid.ColumnDefinitions>
|
2023-05-19 08:17:51 +00:00
|
|
|
|
<ColumnDefinition Width="1.5*" />
|
|
|
|
|
<ColumnDefinition Width="1*" />
|
|
|
|
|
<ColumnDefinition Width="1*" />
|
|
|
|
|
<ColumnDefinition Width="1*" />
|
2023-04-03 18:11:12 +00:00
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<pu:Switch x:Name="StartPlace" BorderBrush="{DynamicResource PrimaryDark}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
CheckedBackground="{DynamicResource Primary}" IsChecked="True"
|
|
|
|
|
CheckedBorderBrush="{DynamicResource Primary}" Background="Transparent" BoxWidth="35"
|
|
|
|
|
BoxHeight="18" ToggleSize="14" ToggleShadowColor="{x:Null}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToggleBrush="{DynamicResource PrimaryDark}" Content="{ll:Str 退出位置}"
|
|
|
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}"
|
|
|
|
|
ToolTip="{ll:Str 游戏退出位置为下次桌宠启动出现的位置}" Unchecked="StartPlace_Checked"
|
|
|
|
|
VerticalAlignment="Center" Checked="StartPlace_Checked" />
|
2023-05-19 08:17:51 +00:00
|
|
|
|
<TextBox x:Name="TextBoxStartUpX" Grid.Column="1" Style="{DynamicResource StandardTextBoxStyle}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToolTip="{ll:Str X轴}" pu:TextBoxHelper.Icon="X" FontSize="16" Margin="0,0,5,0"
|
|
|
|
|
pu:TextBoxHelper.InputLimit="Digit" pu:TextBoxHelper.Watermark="{ll:Str X轴}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
TextChanged="TextBoxStartUp_TextChanged" pu:IconHelper.Margin="5,0,0,0" />
|
|
|
|
|
<TextBox x:Name="TextBoxStartUpY" Grid.Column="2" Style="{DynamicResource StandardTextBoxStyle}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToolTip="{ll:Str Y轴}" pu:TextBoxHelper.Icon="Y" FontSize="16"
|
|
|
|
|
pu:TextBoxHelper.InputLimit="Digit" pu:TextBoxHelper.Watermark="{ll:Str Y轴}"
|
|
|
|
|
Margin="0,0,5,0" TextChanged="TextBoxStartUp_TextChanged" pu:IconHelper.Margin="5,0,0,0" />
|
|
|
|
|
<Button x:Name="BtnStartUpGet" pu:ButtonHelper.CornerRadius="4" Content="{ll:Str 当前位置}"
|
|
|
|
|
Grid.Column="3" Background="{DynamicResource SecondaryLight}"
|
|
|
|
|
HorizontalAlignment="Center" VerticalAlignment="Center" Height="30"
|
|
|
|
|
BorderBrush="{DynamicResource SecondaryDark}" BorderThickness="2"
|
|
|
|
|
Click="BtnStartUpGet_Click" />
|
2023-04-03 18:11:12 +00:00
|
|
|
|
|
|
|
|
|
</Grid>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Grid.Row="6" Text="{ll:Str 消息框}" VerticalAlignment="Center" />
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<pu:Switch x:Name="SwitchMsgOut" Grid.Column="2" Grid.Row="6"
|
|
|
|
|
BorderBrush="{DynamicResource PrimaryDark}" CheckedBackground="{DynamicResource Primary}"
|
|
|
|
|
CheckedBorderBrush="{DynamicResource Primary}" Background="Transparent" BoxWidth="35"
|
|
|
|
|
BoxHeight="18" ToggleSize="14" ToggleShadowColor="{x:Null}"
|
|
|
|
|
ToggleBrush="{DynamicResource PrimaryDark}"
|
2023-05-30 16:51:17 +00:00
|
|
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}" Checked="SwitchMsgOut_Checked"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Unchecked="SwitchMsgOut_Checked" ToolTip="{ll:Str 将消息框置于外部}" Content="{ll:Str 将消息框置于外部}" />
|
|
|
|
|
<TextBlock Grid.Row="7" Text="{ll:Str 开机启动}" VerticalAlignment="Center" />
|
2023-04-03 18:11:12 +00:00
|
|
|
|
<Grid Grid.Row="7" Grid.Column="2">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<pu:Switch x:Name="StartUpBox" BorderBrush="{DynamicResource PrimaryDark}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
CheckedBackground="{DynamicResource Primary}"
|
|
|
|
|
CheckedBorderBrush="{DynamicResource Primary}" Background="Transparent" BoxWidth="35"
|
|
|
|
|
BoxHeight="18" ToggleSize="14" ToggleShadowColor="{x:Null}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToggleBrush="{DynamicResource PrimaryDark}" Content="{ll:Str 开机启动}"
|
2023-06-23 13:15:57 +00:00
|
|
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToolTip="{ll:Str '该游戏随着开机启动该程序\ 如需卸载游戏\ 请关闭该选项'}" Checked="StartUpBox_Checked"
|
2023-06-23 13:15:57 +00:00
|
|
|
|
Unchecked="StartUpBox_Checked" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<pu:Switch x:Name="StartUpSteamBox" BorderBrush="{DynamicResource PrimaryDark}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
CheckedBackground="{DynamicResource Primary}"
|
|
|
|
|
IsEnabled="{Binding ElementName=StartUpBox,Path=IsChecked}"
|
|
|
|
|
CheckedBorderBrush="{DynamicResource Primary}" Background="Transparent" BoxWidth="35"
|
|
|
|
|
BoxHeight="18" ToggleSize="14" ToggleShadowColor="{x:Null}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToggleBrush="{DynamicResource PrimaryDark}" Content="{ll:Str 从Steam启动}"
|
|
|
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}"
|
|
|
|
|
ToolTip="{ll:Str '从Steam启动该游戏, 统计时长不能停'}" Grid.Column="1"
|
|
|
|
|
Checked="StartUpSteamBox_Checked" Unchecked="StartUpSteamBox_Checked" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</Grid>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Grid.Row="8" Text="{ll:Str 宠物动画}" VerticalAlignment="Center" />
|
|
|
|
|
<TextBlock x:Name="PetIntor" Grid.Row="9" Text="{ll:Str 动画描述动画描述动画描述动画描述动画描述}"
|
|
|
|
|
VerticalAlignment="Center" Grid.Column="2" TextWrapping="WrapWithOverflow" FontSize="14" />
|
|
|
|
|
<ComboBox x:Name="PetBox" Grid.Row="8" Grid.Column="2" ToolTip="{ll:Str '加载的宠物动画,重启后生效'}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Style="{DynamicResource StandardComboBoxStyle}" Margin="0,3,0,2"
|
|
|
|
|
SelectionChanged="PetBox_SelectionChanged" FontSize="16" />
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Button x:Name="ButtonRestartGraph" Content="{ll:Str 重启软件以应用更改}" Visibility="Collapsed"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
VerticalAlignment="Bottom" Background="{DynamicResource DARKPrimary}"
|
|
|
|
|
Foreground="{DynamicResource DARKPrimaryText}" Click="ButtonRestart_Click"
|
|
|
|
|
Grid.ColumnSpan="3" Grid.Row="10" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</Grid>
|
|
|
|
|
</TabItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TabItem Header="{ll:Str 系统}" BorderBrush="{DynamicResource PrimaryDarker}">
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<ScrollViewer>
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Background="{x:Null}"
|
|
|
|
|
TextWrapping="Wrap">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run FontWeight="Bold" FontSize="18" Text="{ll:Str 自动保存频率}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str 在指定时间后自动保存游戏数据}" />
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</TextBlock>
|
|
|
|
|
<ComboBox x:Name="CBAutoSave" SelectedIndex="3" VerticalAlignment="Top" Margin="10,5,0,0"
|
|
|
|
|
HorizontalAlignment="Left" Style="{DynamicResource StandardComboBoxStyle}" Width="200"
|
|
|
|
|
SelectionChanged="CBAutoSave_SelectionChanged" FontSize="16">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str 关闭自动保存}">
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>-1</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str 每5分钟一次}">
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>5</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str 每10分钟一次}">
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>10</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str 每20分钟一次}">
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>20</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str 每半小时一次}">
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>30</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str 每小时一次}">
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>60</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</ComboBoxItem>
|
|
|
|
|
</ComboBox>
|
|
|
|
|
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Background="{x:Null}"
|
|
|
|
|
TextWrapping="Wrap" Margin="0,6,0,0">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run FontWeight="Bold" FontSize="18" Text="{ll:Str 从备份中还原}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '虚拟桌宠模拟器在每次保存的时候都会备份上次储存的存档, 当原始存档丢失,受损或误操作时, 就可以还原他们'}" />
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</TextBlock>
|
|
|
|
|
<Grid Margin="0,5,0,0">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
|
<ColumnDefinition Width="15" />
|
|
|
|
|
<ColumnDefinition Width="3*" />
|
|
|
|
|
<ColumnDefinition Width="1*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Grid.Row="0" Text="{ll:Str 备份数量}" VerticalAlignment="Center" />
|
2023-06-23 20:08:08 +00:00
|
|
|
|
<pu:NumberInput x:Name="numBackupSaveMaxNum" Grid.Column="2" Minimum="1" Value="20"
|
|
|
|
|
Margin="0,1,0,1" CornerRadius="4" BorderBrush="{DynamicResource PrimaryDarker}"
|
|
|
|
|
BorderThickness="1.5" ValueChanged="numBackupSaveMaxNum_ValueChanged" />
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Grid.Row="1" Text="{ll:Str 加载存档}" VerticalAlignment="Center" />
|
|
|
|
|
<Button x:Name="BtnSaveReload" pu:ButtonHelper.CornerRadius="4" Content="{ll:Str 加载}"
|
|
|
|
|
Grid.Column="3" Background="{DynamicResource SecondaryLight}" Padding="1" Margin="5"
|
|
|
|
|
Grid.Row="1" ToolTip="{ll:Str 加载上次保存的存档}" Click="BtnSaveReload_Click" />
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<ComboBox x:Name="CBSaveReLoad" SelectedIndex="3"
|
|
|
|
|
Style="{DynamicResource StandardComboBoxStyle}" FontSize="16" Grid.Column="2"
|
|
|
|
|
Grid.Row="1" MouseEnter="CBSaveReLoad_MouseEnter" />
|
|
|
|
|
</Grid>
|
|
|
|
|
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Background="{x:Null}"
|
|
|
|
|
TextWrapping="Wrap" Margin="0,10,0,0">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run FontWeight="Bold" FontSize="18" Text="{ll:Str 操作设置}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str 游戏操作相关设置}" />
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</TextBlock>
|
|
|
|
|
<Grid>
|
2023-01-10 10:43:32 +00:00
|
|
|
|
<Grid.ColumnDefinitions>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ColumnDefinition Width="Auto" />
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<ColumnDefinition Width="15" />
|
|
|
|
|
<ColumnDefinition />
|
2023-01-10 10:43:32 +00:00
|
|
|
|
</Grid.ColumnDefinitions>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
</Grid.RowDefinitions>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Grid.Row="0" Text="{ll:Str 长按间隔}" VerticalAlignment="Center" />
|
|
|
|
|
<TextBlock Grid.Row="1" Text="{ll:Str 桌宠名字}" VerticalAlignment="Center" />
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<TextBox x:Name="TextBoxPetName" Grid.Row="1" Grid.Column="2"
|
|
|
|
|
Style="{DynamicResource StandardTextBoxStyle}"
|
|
|
|
|
TextChanged="TextBoxPetName_TextChanged" FontSize="16" />
|
|
|
|
|
<Grid Grid.Column="2" Grid.Row="0"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToolTip="{ll:Str '数据计算和互动计算时间间隔,间隔越短需要互动的频率可能会增加\ 间隔越大越不容易打扰到当前工作'}">
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Slider x:Name="PressLengthSlider" TickFrequency="0.01" IsSnapToTickEnabled="True"
|
|
|
|
|
Style="{DynamicResource StandardSliderStyle}" VerticalAlignment="Center"
|
|
|
|
|
Maximum="5" SmallChange=".05" Minimum="0.05" LargeChange="0.1" Value="0.5"
|
|
|
|
|
ValueChanged="PressLengthSlider_ValueChanged" />
|
|
|
|
|
<TextBlock Grid.Column="1" Margin="10,0,0,0" VerticalAlignment="Center" Width="60"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Text="{ll:Str '\{0:F2} 秒', ValueSource={Binding ElementName=PressLengthSlider,Path=Value}}"
|
2023-06-23 13:15:57 +00:00
|
|
|
|
Foreground="{DynamicResource DARKPrimaryDarker}" FontWeight="Bold"
|
|
|
|
|
Background="{x:Null}" />
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<!--{Binding ElementName=PressLengthSlider,Path=Value,StringFormat={}{0:f2} 秒}-->
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</Grid>
|
2023-01-10 10:43:32 +00:00
|
|
|
|
</Grid>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Background="{x:Null}"
|
|
|
|
|
TextWrapping="Wrap" Margin="0,10,0,0">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run FontWeight="Bold" FontSize="18" Text="{ll:Str 聊天设置}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str 使用ChatGPT进行聊天等相关设置}" />
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</TextBlock>
|
|
|
|
|
<Grid>
|
2023-03-07 16:50:03 +00:00
|
|
|
|
<Grid.ColumnDefinitions>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
|
<ColumnDefinition Width="15" />
|
|
|
|
|
<ColumnDefinition />
|
2023-03-07 16:50:03 +00:00
|
|
|
|
</Grid.ColumnDefinitions>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
</Grid.RowDefinitions>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Grid.Row="0" Text="{ll:Str 使用模式}" VerticalAlignment="Center" />
|
|
|
|
|
<TextBlock Grid.Row="1" Text="{ll:Str 相关功能}" VerticalAlignment="Center" />
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<Grid Grid.Column="2">
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<RadioButton x:Name="RBCGPTUseAPI" Style="{DynamicResource StandardRadioButtonStyle}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Content="{ll:Str '使用从ChatGPT\ 申请的的API'}" ToolTip="{ll:Str 需要去OpenAI官网申请}"
|
|
|
|
|
GroupName="cgpttype" Grid.Column="1" Checked="CGPType_Checked" />
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<RadioButton x:Name="RBCGPTUseLB" Style="{DynamicResource StandardRadioButtonStyle}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Content="{ll:Str '使用桌宠开发者\ 提供的免费API'}"
|
|
|
|
|
ToolTip="{ll:Str 需遵循相关协议法律法规并有聊天字数限制}" GroupName="cgpttype" IsChecked="True"
|
|
|
|
|
Checked="CGPType_Checked" />
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</Grid>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Button x:Name="BtnCGPTReSet" pu:ButtonHelper.CornerRadius="4" Content="{ll:Str 初始化桌宠聊天程序}"
|
2023-06-23 13:15:57 +00:00
|
|
|
|
Margin="4" Grid.Column="2" Background="{DynamicResource SecondaryLight}" Padding="1"
|
|
|
|
|
Grid.Row="1" Click="ChatGPT_Reset_Click" />
|
2023-03-07 16:50:03 +00:00
|
|
|
|
</Grid>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
</StackPanel>
|
|
|
|
|
</ScrollViewer>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</TabItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TabItem Header="{ll:Str 互动}" BorderBrush="{DynamicResource PrimaryDarker}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<StackPanel>
|
|
|
|
|
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Background="{x:Null}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
TextWrapping="Wrap">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run FontWeight="Bold" FontSize="18" Text="{ll:Str 互动设置}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str 游戏互动相关设置}" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</TextBlock>
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
|
<ColumnDefinition Width="15" />
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
2023-06-23 20:08:08 +00:00
|
|
|
|
<RowDefinition Height="35" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</Grid.RowDefinitions>
|
2023-05-19 08:17:51 +00:00
|
|
|
|
<pu:Switch x:Name="CalFunctionBox" BorderBrush="{DynamicResource PrimaryDark}" Grid.Column="2"
|
|
|
|
|
CheckedBackground="{DynamicResource Primary}"
|
|
|
|
|
CheckedBorderBrush="{DynamicResource Primary}" Background="Transparent" BoxWidth="35"
|
|
|
|
|
BoxHeight="18" ToggleSize="14" ToggleShadowColor="{x:Null}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToggleBrush="{DynamicResource PrimaryDark}" Content="{ll:Str '启用后桌宠会有状态变化,需要按时投喂等'}"
|
2023-06-23 20:08:08 +00:00
|
|
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToolTip="{ll:Str '启用数据计算,桌宠会有状态变化,需要按时投喂等.\ 如果嫌麻烦可以关掉'}"
|
|
|
|
|
Checked="CalFunctionBox_Checked" Unchecked="CalFunctionBox_Checked" />
|
|
|
|
|
<Grid Grid.Row="1" Grid.Column="2"
|
|
|
|
|
ToolTip="{ll:Str '当玩家在指定时间未对桌宠进行交互的时候,智能禁用移动功能\ 将在下次交互时解除'}">
|
2023-06-23 20:08:08 +00:00
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Text="{ll:Str '当关闭数据计算时\ 桌宠显示的状态'}" FontSize="14" />
|
|
|
|
|
<ComboBox x:Name="combCalFunState" Style="{DynamicResource StandardComboBoxStyle}"
|
|
|
|
|
ToolTip="{ll:Str '当关闭数据计算时\ 桌宠显示的状态'}"
|
|
|
|
|
SelectionChanged="combCalFunState_SelectionChanged" SelectedIndex="5"
|
|
|
|
|
Grid.Column="1">
|
2023-06-23 20:08:08 +00:00
|
|
|
|
<ComboBoxItem Content="Happy" />
|
|
|
|
|
<ComboBoxItem Content="Nomal" />
|
|
|
|
|
<ComboBoxItem Content="PoorCondition" />
|
|
|
|
|
<ComboBoxItem Content="Ill" />
|
|
|
|
|
</ComboBox>
|
|
|
|
|
</Grid>
|
2023-06-24 05:40:06 +00:00
|
|
|
|
<Grid Grid.Column="2" Grid.Row="5" Grid.RowSpan="2">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
2023-06-24 05:40:06 +00:00
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
<RowDefinition Height="35" />
|
|
|
|
|
</Grid.RowDefinitions>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<pu:Switch x:Name="MoveEventBox" BorderBrush="{DynamicResource PrimaryDark}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
CheckedBackground="{DynamicResource Primary}" Content="{ll:Str 启用桌宠移动}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
CheckedBorderBrush="{DynamicResource Primary}" Background="Transparent"
|
|
|
|
|
BoxWidth="35" BoxHeight="18" ToggleSize="14" ToggleShadowColor="{x:Null}"
|
|
|
|
|
ToggleBrush="{DynamicResource PrimaryDark}" IsChecked="True"
|
|
|
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}" Margin="10,0,0,0"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToolTip="{ll:Str '启用移动互动,桌宠会在屏幕上乱动,移动互动概率为普通互动的一半.\ 如果嫌麻烦可以关掉'}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Checked="MoveEventBox_Checked" Unchecked="MoveEventBox_Checked" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<pu:Switch x:Name="SmartMoveEventBox" BorderBrush="{DynamicResource PrimaryDark}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
IsEnabled="{Binding ElementName=MoveEventBox,Path=IsChecked}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
CheckedBackground="{DynamicResource Primary}" Content="{ll:Str '智能移动'}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
CheckedBorderBrush="{DynamicResource Primary}" Background="Transparent"
|
|
|
|
|
BoxWidth="35" BoxHeight="18" ToggleSize="14" ToggleShadowColor="{x:Null}"
|
|
|
|
|
ToggleBrush="{DynamicResource PrimaryDark}" Grid.Column="1"
|
|
|
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}" Margin="10,0,0,0"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToolTip="{ll:Str '当玩家在指定时间未对桌宠进行交互的时候,智能禁用移动功能\ 将在下次交互时解除'}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Checked="SmartMoveEventBox_Checked" Unchecked="SmartMoveEventBox_Checked" />
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Text="{ll:Str '智能移动判断时间间隔'}" Grid.Row="1"
|
|
|
|
|
ToolTip="{ll:Str '当玩家在指定时间未对桌宠进行交互的时候,智能禁用移动功能\ 将在下次交互时解除'}" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBox x:Name="CBSmartMove" Style="{DynamicResource StandardComboBoxStyle}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
IsEnabled="{Binding ElementName=SmartMoveEventBox,Path=IsChecked}"
|
2023-06-24 05:40:06 +00:00
|
|
|
|
SelectionChanged="CBSmartMove_SelectionChanged" SelectedIndex="5" Grid.Column="1"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Grid.Row="1" ToolTip="{ll:Str '当玩家在指定时间未对桌宠进行交互的时候,智能禁用移动功能\ 将在下次交互时解除'}">
|
|
|
|
|
<ComboBoxItem Content="{ll:Str '30 秒'}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>30</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str '1 分钟'}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>60</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str '2 分钟'}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>120</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str '5 分钟'}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>300</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str '10 分钟'}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>600</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str '20 分钟'}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>1200</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str '30 分钟'}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>1800</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str '40 分钟'}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>2400</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str '50 分钟'}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>3000</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ComboBoxItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str '60 分钟'}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ComboBoxItem.Tag>
|
|
|
|
|
<system:Int32>3600</system:Int32>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
</ComboBoxItem.Tag>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ComboBoxItem>
|
|
|
|
|
</ComboBox>
|
2023-01-10 10:43:32 +00:00
|
|
|
|
</Grid>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Grid.Row="0" Text="{ll:Str 数据计算}" VerticalAlignment="Center" />
|
|
|
|
|
<TextBlock Grid.Row="1" Text="{ll:Str 显示状态}" VerticalAlignment="Center" />
|
|
|
|
|
<TextBlock Grid.Row="5" Text="{ll:Str 桌宠移动}" VerticalAlignment="Center" />
|
|
|
|
|
<TextBlock Grid.Row="2" Text="{ll:Str 计算间隔}" VerticalAlignment="Center" />
|
|
|
|
|
<Grid Grid.Column="2" Grid.Row="2"
|
|
|
|
|
ToolTip="{ll:Str '数据计算和互动计算时间间隔,间隔越短需要互动的频率可能会增加.\ 间隔越大越不容易打扰到当前工作'}">
|
2023-06-24 05:40:06 +00:00
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Slider x:Name="CalSlider" TickFrequency="0.1" IsSnapToTickEnabled="True"
|
|
|
|
|
Style="{DynamicResource StandardSliderStyle}" VerticalAlignment="Center"
|
|
|
|
|
Maximum="60" SmallChange=".5" Minimum="5" LargeChange="1" Value="15"
|
|
|
|
|
ValueChanged="CalSlider_ValueChanged" />
|
|
|
|
|
<TextBlock Grid.Column="1" Margin="10,0,0,0" VerticalAlignment="Center"
|
|
|
|
|
Text="{Binding ElementName=CalSlider,Path=Value,StringFormat={}{0:f1} 秒}"
|
|
|
|
|
Foreground="{DynamicResource DARKPrimaryDarker}" FontWeight="Bold"
|
|
|
|
|
Background="{x:Null}" Width="60" />
|
|
|
|
|
</Grid>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Grid.Row="3" Text="{ll:Str '互动周期'}" VerticalAlignment="Center" />
|
2023-06-24 05:40:06 +00:00
|
|
|
|
<TextBlock Grid.Row="4" VerticalAlignment="Top" Grid.Column="2" FontSize="14">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run Text="{ll:Str 每分钟计算}" /> <Run x:Name="rTimeMinute">4</Run> <Run Text="{ll:Str 次数值变化}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str 大约}" /> <Run x:Name="RInter">4</Run> <Run
|
|
|
|
|
Text="{ll:Str '分钟左右主动进行一次互动(走路发呆爬墙等)'}" />
|
2023-06-24 05:40:06 +00:00
|
|
|
|
</TextBlock>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Grid Grid.Column="2" Grid.Row="3" ToolTip="{ll:Str 互动周期决定在交互结束后大约经历多少计算间隔后再次进行自主行动}">
|
2023-06-24 05:40:06 +00:00
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Slider TickFrequency="1" IsSnapToTickEnabled="True" x:Name="InteractionSlider"
|
|
|
|
|
Style="{DynamicResource StandardSliderStyle}" VerticalAlignment="Center"
|
|
|
|
|
Maximum="1000" SmallChange="1" Minimum="30" LargeChange="5" Value="200"
|
|
|
|
|
ValueChanged="InteractionSlider_ValueChanged" />
|
|
|
|
|
<TextBlock Grid.Column="1" Margin="10,0,0,0" VerticalAlignment="Center"
|
|
|
|
|
Text="{Binding ElementName=InteractionSlider,Path=Value}" FontSize="18"
|
|
|
|
|
Foreground="{DynamicResource DARKPrimaryDarker}" FontWeight="Bold"
|
|
|
|
|
Background="{x:Null}" Width="60" />
|
2023-07-02 13:41:38 +00:00
|
|
|
|
|
2023-06-24 05:40:06 +00:00
|
|
|
|
</Grid>
|
|
|
|
|
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</Grid>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</TabItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TabItem Header="{ll:Str 自定}" BorderBrush="{DynamicResource PrimaryDarker}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<StackPanel>
|
2023-05-19 08:17:51 +00:00
|
|
|
|
<TextBlock Background="{x:Null}" TextWrapping="Wrap">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run FontWeight="Bold" FontSize="18" Text="{ll:Str 自定义链接}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '在自定栏添加快捷方式/网页/快捷键, 可以便携启动想要的功能'}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '键盘快捷键编写方法请参考'}" /> <Hyperlink Click="sendkey_click"><Run
|
|
|
|
|
Text="{ll:Str '键盘快捷键 通用注解'}" /></Hyperlink><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '右键进行排序/删除等操作'}" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</TextBlock>
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Button pu:ButtonHelper.CornerRadius="4" Content="{ll:Str 添加新链接}" Margin="4"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Background="{DynamicResource SecondaryLight}" Padding="1" Click="DIY_ADD_Click" />
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Button pu:ButtonHelper.CornerRadius="4" Content="{ll:Str 保存设置}" Margin="4" Grid.Column="1"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Background="{DynamicResource SecondaryLight}" Padding="1" Click="DIY_Save_Click" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</Grid>
|
|
|
|
|
<StackPanel x:Name="StackDIY" />
|
|
|
|
|
</StackPanel>
|
2023-03-07 16:50:03 +00:00
|
|
|
|
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</TabItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TabItem Header="{ll:Str 诊断}" BorderBrush="{DynamicResource PrimaryDarker}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<StackPanel>
|
2023-05-19 08:17:51 +00:00
|
|
|
|
<TextBlock HorizontalAlignment="Left" FontSize="11" VerticalAlignment="Top" Background="{x:Null}"
|
|
|
|
|
TextWrapping="Wrap">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run FontWeight="Bold" FontSize="18" Text="{ll:Str 诊断与反馈}" /> <LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '选择要发送给 LBGame 的诊断数据,诊断数据用于保护和及时更新 虚拟桌宠模拟器, 解决问题并改进产品.'}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '无论选择哪个选项,游戏都可以安全正常地运行.'}" /> <Hyperlink Click="hyper_moreInfo"><Run
|
|
|
|
|
Text="{ll:Str 获取有关这些设置的更多信息}" /></Hyperlink>
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</TextBlock>
|
|
|
|
|
<RadioButton x:Name="RBDiagnosisYES" Style="{DynamicResource StandardRadioButtonStyle}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Content="{ll:Str '发送诊断数据: 发送游戏存档, 包括饱腹,状态等各种游戏内\ 数据. 可能会包括该游戏内存和CPU使用情况'}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
HorizontalAlignment="Left" Margin="10,10,10,0" VerticalAlignment="Top" GroupName="diagnosis"
|
|
|
|
|
Checked="RBDiagnosisYES_Checked" IsEnabled="False" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<RadioButton x:Name="RBDiagnosisNO" Style="{DynamicResource StandardRadioButtonStyle}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Content="{ll:Str '不发送诊断数据: 适用于启用修改器,修改过游戏数据等不\ 符合分析数据条件. 或不希望提供游戏数据的玩家'}"
|
|
|
|
|
HorizontalAlignment="Left" Margin="10,10,10,0" VerticalAlignment="Top" GroupName="diagnosis"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Checked="RBDiagnosisNO_Checked" IsChecked="True" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<TextBlock HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,15,0,0"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Background="{x:Null}" TextWrapping="Wrap">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run FontWeight="Bold" Text="{ll:Str 反馈频率}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str 'VOS 应寻求我反馈按以下频率'}" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</TextBlock>
|
|
|
|
|
<ComboBox x:Name="CBDiagnosis" SelectedIndex="1" VerticalAlignment="Top" Margin="10,5,0,0"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
HorizontalAlignment="Left" Style="{DynamicResource StandardComboBoxStyle}" Width="200"
|
|
|
|
|
SelectionChanged="CBDiagnosis_SelectionChanged" IsEnabled="False">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<ComboBoxItem Content="{ll:Str '每 两百 周期一次'}" />
|
|
|
|
|
<ComboBoxItem Content="{ll:Str '每 五百 周期一次'}" />
|
|
|
|
|
<ComboBoxItem Content="{ll:Str '每 一千 周期一次'}" />
|
|
|
|
|
<ComboBoxItem Content="{ll:Str '每 两千 周期一次'}" />
|
|
|
|
|
<ComboBoxItem Content="{ll:Str '每 五千 周期一次'}" />
|
|
|
|
|
<ComboBoxItem Content="{ll:Str '每 一万 周期一次'}" />
|
|
|
|
|
<ComboBoxItem Content="{ll:Str '每 两万 周期一次'}" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ComboBox>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</TabItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TabItem Header="{ll:Str MOD管理}" BorderBrush="{DynamicResource PrimaryDarker}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="120" />
|
|
|
|
|
<ColumnDefinition Width="15" />
|
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<ListBox x:Name="ListMod" BorderThickness="0" Background="Transparent"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Style="{DynamicResource SideMenuListBoxStyle}" VerticalAlignment="Top"
|
|
|
|
|
SelectionChanged="ListMod_SelectionChanged" SelectionMode="Single" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<StackPanel Grid.Column="2">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
|
<ColumnDefinition Width="7" />
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Image x:Name="ImageMOD" HorizontalAlignment="Right" Height="120" Margin="0,5,0,0"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
VerticalAlignment="Top" Width="120" Stretch="Fill" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<StackPanel Grid.Column="2">
|
2023-05-19 08:17:51 +00:00
|
|
|
|
<Label x:Name="LabelModName" Content="Core" HorizontalAlignment="Left" Margin="-5,2,0,0"
|
|
|
|
|
VerticalAlignment="Top" FontWeight="Bold" FontSize="20" Background="{x:Null}"
|
|
|
|
|
Foreground="{DynamicResource PrimaryText}" />
|
|
|
|
|
<TextBlock Margin="0,0,0,0" TextWrapping="Wrap">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run Text="{ll:Str '模组作者: '}" /><LineBreak />
|
2023-01-23 17:31:16 +00:00
|
|
|
|
<Run x:Name="runMODAuthor" Text="LorisYounger" />
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<LineBreak /><Run Text="{ll:Str '模组版本: '}" /><Run x:Name="runMODVer" Text="1.0" />
|
|
|
|
|
<LineBreak /><Run Text="{ll:Str '游戏版本: '}" /><Run x:Name="runMODGameVer" Text="1.0" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</TextBlock>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
<ScrollViewer VerticalScrollBarVisibility="Auto" Height="60" Margin="0,7,0,0"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
pu:ScrollViewerHelper.ScrollBarThickness="10" HorizontalAlignment="Left"
|
|
|
|
|
VerticalAlignment="Top">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<TextBlock x:Name="GameInfo" TextWrapping="Wrap" FontSize="14"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Text="这里是MOD的介绍内容,你的介绍就是你的介绍
" VerticalAlignment="Top" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ScrollViewer>
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<StackPanel>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Label Content="{ll:Str MOD介绍}" HorizontalAlignment="Left" Margin="-5,0,0,0"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
VerticalAlignment="Center" FontSize="18" FontWeight="Bold" Background="{x:Null}" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ScrollViewer VerticalScrollBarVisibility="Auto" Height="140" Margin="0,0,0,0"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
pu:ScrollViewerHelper.ScrollBarThickness="10" HorizontalAlignment="Left"
|
|
|
|
|
VerticalAlignment="Top">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<TextBlock x:Name="GameHave" FontSize="14" TextWrapping="Wrap"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Text="该mod有许多功能
比如说功能1
比如说功能1
比如说功能1
比如说功能1
比如说功能1"
|
|
|
|
|
HorizontalAlignment="Left" VerticalAlignment="Top" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</ScrollViewer>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Grid.Column="1">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Label Content="{ll:Str 内容}" HorizontalAlignment="Left" Margin="-5,0,0,0" VerticalAlignment="Top"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
FontSize="18" FontWeight="Bold" Background="{x:Null}" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<TextBlock x:Name="ButtonOpenModFolder" Cursor="Hand" HorizontalAlignment="Left"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Margin="0,0,0,0" TextWrapping="Wrap" Text="{ll:Str '所在文件夹'}" VerticalAlignment="Top"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
FontSize="14" Foreground="{DynamicResource DARKPrimaryDarker}"
|
|
|
|
|
TextDecorations="Underline" MouseDown="ButtonOpenModFolder_MouseDown" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<TextBlock x:Name="ButtonEnable" HorizontalAlignment="Left" Margin="0,2,0,0"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
TextWrapping="Wrap" Text="{ll:Str '启用该模组'}" VerticalAlignment="Top" FontSize="14"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Foreground="{DynamicResource DARKPrimaryDarker}" TextDecorations="Underline"
|
|
|
|
|
Cursor="Hand" MouseDown="ButtonEnable_MouseDown" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<TextBlock x:Name="ButtonDisEnable" HorizontalAlignment="Left" Margin="0,2,0,0"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
TextWrapping="Wrap" Text="{ll:Str '停用该模组'}" VerticalAlignment="Top" FontSize="14"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Foreground="{DynamicResource DARKPrimaryDarker}" TextDecorations="Underline"
|
|
|
|
|
Cursor="Hand" MouseDown="ButtonDisEnable_MouseDown" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<TextBlock x:Name="ButtonPublish" HorizontalAlignment="Left" Margin="0,2,0,0"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
TextWrapping="Wrap" Text="{ll:Str 更新至Steam}" VerticalAlignment="Top" FontSize="14"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Foreground="DimGray" TextDecorations="Underline" Cursor="Hand"
|
|
|
|
|
MouseDown="ButtonPublish_MouseDown" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<TextBlock x:Name="ButtonSteam" HorizontalAlignment="Left" Margin="0,2,0,0"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
TextWrapping="Wrap" Text="{ll:Str 创意工坊页面}" VerticalAlignment="Top" FontSize="14"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Foreground="DimGray" TextDecorations="Underline" Cursor="Hand"
|
|
|
|
|
MouseDown="ButtonSteam_MouseDown" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<ProgressBar x:Name="ProgressBarUpload" Margin="0,2,0,0" Visibility="Collapsed"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
pu:ProgressBarHelper.CornerRadius="2" VerticalAlignment="Top" Height="30"
|
|
|
|
|
Value="60" Background="{DynamicResource Primary}"
|
|
|
|
|
BorderBrush="{DynamicResource PrimaryDarker}"
|
|
|
|
|
pu:ProgressBarHelper.IsPercentVisible="True"
|
|
|
|
|
Foreground="{DynamicResource DARKPrimary}" BorderThickness="2" />
|
2023-04-01 19:31:28 +00:00
|
|
|
|
<TextBlock x:Name="ButtonSetting" HorizontalAlignment="Left" Margin="0,2,0,0"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
TextWrapping="Wrap" Text="{ll:Str MOD设置}" VerticalAlignment="Top" FontSize="14"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Foreground="{DynamicResource DARKPrimaryDarker}" TextDecorations="Underline"
|
|
|
|
|
Cursor="Hand" MouseDown="ButtonSetting_MouseDown" />
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Button x:Name="ButtonAllow" Content="{ll:Str 启用代码插件}" HorizontalAlignment="Left"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
VerticalAlignment="Top" Background="#FFFF2C2C" Foreground="White" FontSize="12"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
ToolTip="{ll:Str '启用该模组的代码内容,不能保证系统安全性'}" Click="ButtonAllow_Click" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</StackPanel>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Button x:Name="ButtonRestart" Content="{ll:Str 重启软件以应用更改}" Margin="0,2,0,0"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
VerticalAlignment="Bottom" Background="{DynamicResource DARKPrimary}"
|
|
|
|
|
Visibility="Collapsed" Foreground="{DynamicResource DARKPrimaryText}"
|
|
|
|
|
Click="ButtonRestart_Click" Grid.ColumnSpan="2" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</Grid>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</TabItem>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TabItem Header="{ll:Str '关于'}" BorderBrush="{DynamicResource PrimaryDarker}"
|
2023-05-19 08:17:51 +00:00
|
|
|
|
Foreground="{DynamicResource PrimaryText}">
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<Grid>
|
2023-06-23 13:15:57 +00:00
|
|
|
|
<Image x:Name="ImageWHY" Width="64" HorizontalAlignment="Right" VerticalAlignment="Top" Height="64"
|
|
|
|
|
Source="/Res/TopLogo2019.PNG" Margin="0,325,55,0" />
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Margin="0,0,0,0" Text="{ll:Str '虚拟主播模拟器 规格'}" FontSize="20" FontWeight="Bold"
|
2023-06-08 21:06:46 +00:00
|
|
|
|
VerticalAlignment="Top" />
|
|
|
|
|
<TextBlock Margin="0,130,0,0" FontWeight="Bold" VerticalAlignment="Top">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run Text="{ll:Str 游戏策划}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str 'UI&程序'}"/><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '动画绘制'}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '开源项目'}" /><LineBreak /><LineBreak /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '项目页面'}"/><LineBreak />
|
2023-03-10 12:22:16 +00:00
|
|
|
|
<LineBreak /><LineBreak />
|
|
|
|
|
<LineBreak /><Run xml:space="preserve">Power By </Run>
|
|
|
|
|
<Hyperlink TextDecorations="Underline" Foreground="Black" Click="VPET_Click">exLB.net</Hyperlink>
|
|
|
|
|
<Run> </Run>
|
|
|
|
|
<Hyperlink TextDecorations="Underline" Foreground="Black" Click="LB_Click">LBGame</Hyperlink>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<LineBreak /><LineBreak /> <Run Text="{ll:Str '相关链接'}" />
|
|
|
|
|
<Run xml:space="preserve"> </Run>
|
2023-03-10 12:22:16 +00:00
|
|
|
|
<Hyperlink TextDecorations="Underline" Foreground="{DynamicResource DARKPrimaryDarker}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Click="VUP_Click" FontWeight="Normal"><Run Text="{ll:Str 虚拟主播模拟器}" /></Hyperlink>
|
2023-05-19 08:17:51 +00:00
|
|
|
|
<Hyperlink TextDecorations="Underline" Foreground="{DynamicResource DARKPrimaryDarker}"
|
2023-07-02 13:41:38 +00:00
|
|
|
|
Click="Group_Click" FontWeight="Normal"><Run Text="{ll:Str 相关群}" /></Hyperlink>
|
2023-03-10 12:22:16 +00:00
|
|
|
|
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</TextBlock>
|
2023-06-08 21:06:46 +00:00
|
|
|
|
<TextBlock Margin="0,30,0,0" FontWeight="Bold" VerticalAlignment="Top">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run Text="{ll:Str '用户名'}" /><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '版本'}"/><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '激活'}"/><LineBreak />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</TextBlock>
|
|
|
|
|
<TextBlock VerticalAlignment="Top" Margin="100,30,0,0" TextWrapping="WrapWithOverflow">
|
2022-12-28 10:03:47 +00:00
|
|
|
|
<Run x:Name="runUserName">杨远洛里斯</Run><LineBreak />
|
|
|
|
|
<Run x:Name="runabVer">v1.0 (100)</Run><LineBreak />
|
|
|
|
|
<Run x:Name="runActivate">已通过Steam[uid]激活服务注册</Run><LineBreak />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</TextBlock>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<TextBlock Margin="0,100,0,0" Text="{ll:Str 制作组名单}" FontSize="20" FontWeight="Bold"
|
2023-06-08 21:06:46 +00:00
|
|
|
|
HorizontalAlignment="Left" VerticalAlignment="Top" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
<TextBlock Margin="100,130,0,0" VerticalAlignment="Top" TextWrapping="WrapWithOverflow">
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run Text="{ll:Str '杨远洛里斯'}" />, <Hyperlink Click="Mod_Click"
|
|
|
|
|
Foreground="{DynamicResource PrimaryText}"><Run Text="{ll:Str 广大MOD作者}" /></Hyperlink><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '洛里斯杨远'}" />, トニーちゃん <Hyperlink Click="Git_Click"><Run Text="{ll:Str Git贡献名单}" /></Hyperlink><LineBreak />
|
|
|
|
|
<Run Text="{ll:Str '叶书天'}" />, <Hyperlink Click="Mod_Click"
|
|
|
|
|
Foreground="{DynamicResource PrimaryText}"><Run Text="{ll:Str 广大MOD作者}" /></Hyperlink>
|
2022-12-28 10:03:47 +00:00
|
|
|
|
<LineBreak />
|
2023-06-23 20:08:08 +00:00
|
|
|
|
<Hyperlink Foreground="{DynamicResource PrimaryText}">Panuon.WPF.UI</Hyperlink>
|
|
|
|
|
<Hyperlink Foreground="{DynamicResource PrimaryText}">LinePutScript</Hyperlink><LineBreak />
|
|
|
|
|
<Hyperlink Foreground="{DynamicResource PrimaryText}">Facepunch.Steamworks</Hyperlink>
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Hyperlink Foreground="{DynamicResource PrimaryText}" Click="Using_Click"><Run
|
|
|
|
|
Text="{ll:Str 查看引用名单}" /></Hyperlink><LineBreak /><LineBreak />
|
|
|
|
|
<Hyperlink Click=" Steam_Click"><Run Text="{ll:Str 访问Steam页面}" /></Hyperlink>
|
|
|
|
|
<Hyperlink Click="Github_Click"><Run Text="{ll:Str 访问Github页面}" /></Hyperlink>
|
2022-12-28 10:03:47 +00:00
|
|
|
|
<LineBreak />
|
2023-07-02 13:41:38 +00:00
|
|
|
|
<Run FontStyle="Italic" FontSize="12" Text="{ll:Str '由于游戏暂未开发完毕,该名单并非完整名单.将在正式版完成前修改'}" /><LineBreak />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</TextBlock>
|
|
|
|
|
</Grid>
|
|
|
|
|
</TabItem>
|
|
|
|
|
</TabControl>
|
2023-05-19 08:17:51 +00:00
|
|
|
|
<Label x:Name="GameVerison" Content="版本v1.0 (655366666)" HorizontalAlignment="Left" VerticalAlignment="Bottom"
|
|
|
|
|
FontSize="10" Foreground="Green" Background="{x:Null}" />
|
2023-03-13 15:40:04 +00:00
|
|
|
|
</Grid>
|
2023-01-03 04:18:21 +00:00
|
|
|
|
</pu:WindowX>
|