mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
504 lines
20 KiB
XML
504 lines
20 KiB
XML
<Page
|
|
x:Class="VPet.Solution.Views.InteractiveSettingsPage"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:ll="clr-namespace:LinePutScript.Localization.WPF;assembly=LinePutScript.Localization.WPF"
|
|
xmlns:local="clr-namespace:VPet.Solution.Views"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:pu="https://opensource.panuon.com/wpf-ui"
|
|
xmlns:sys="clr-namespace:System;assembly=mscorlib"
|
|
xmlns:vm="clr-namespace:VPet.Solution.ViewModels"
|
|
Title="InteractiveSettingsPage"
|
|
d:DataContext="{d:DesignInstance Type=vm:InteractiveSettingsPageVM}"
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
mc:Ignorable="d">
|
|
|
|
<Grid>
|
|
<ScrollViewer>
|
|
<StackPanel>
|
|
<TextBlock
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Top"
|
|
Background="{x:Null}"
|
|
TextWrapping="Wrap">
|
|
<Run
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
Text="{ll:Str 互动设置}" /><LineBreak />
|
|
<Run Text="{ll:Str 游戏互动相关设置}" />
|
|
</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" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<pu:Switch
|
|
x:Name="CalFunctionBox"
|
|
Grid.Column="2"
|
|
d:Checked="CalFunctionBox_Checked"
|
|
d:Unchecked="CalFunctionBox_Checked"
|
|
Background="Transparent"
|
|
BorderBrush="{DynamicResource PrimaryDark}"
|
|
BoxHeight="18"
|
|
BoxWidth="35"
|
|
CheckedBackground="{DynamicResource Primary}"
|
|
CheckedBorderBrush="{DynamicResource Primary}"
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}"
|
|
Content="{ll:Str '启用后桌宠会有状态变化,需要按时投喂等'}"
|
|
ToggleBrush="{DynamicResource PrimaryDark}"
|
|
ToggleShadowColor="{x:Null}"
|
|
ToggleSize="14"
|
|
ToolTip="{ll:Str '启用数据计算,桌宠会有状态变化,需要按时投喂等.\ 如果嫌麻烦可以关掉'}" />
|
|
<Grid
|
|
Grid.Row="1"
|
|
Grid.Column="2"
|
|
ToolTip="{ll:Str '当玩家在指定时间未对桌宠进行交互的时候,智能禁用移动功能\ 将在下次交互时解除'}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<TextBlock FontSize="14" Text="{ll:Str '当关闭数据计算时\ 桌宠显示的状态'}" />
|
|
<ComboBox
|
|
x:Name="combCalFunState"
|
|
Grid.Column="1"
|
|
d:SelectionChanged="combCalFunState_SelectionChanged"
|
|
SelectedIndex="5"
|
|
Style="{DynamicResource StandardComboBoxStyle}"
|
|
ToolTip="{ll:Str '当关闭数据计算时\ 桌宠显示的状态'}">
|
|
<ComboBoxItem Content="Happy" />
|
|
<ComboBoxItem Content="Nomal" />
|
|
<ComboBoxItem Content="PoorCondition" />
|
|
<ComboBoxItem Content="Ill" />
|
|
</ComboBox>
|
|
</Grid>
|
|
<Grid
|
|
Grid.Row="5"
|
|
Grid.RowSpan="4"
|
|
Grid.Column="2">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="35" />
|
|
<RowDefinition Height="35" />
|
|
</Grid.RowDefinitions>
|
|
<pu:Switch
|
|
x:Name="MoveEventBox"
|
|
Margin="10,0,0,0"
|
|
d:Checked="MoveEventBox_Checked"
|
|
d:Unchecked="MoveEventBox_Checked"
|
|
Background="Transparent"
|
|
BorderBrush="{DynamicResource PrimaryDark}"
|
|
BoxHeight="18"
|
|
BoxWidth="35"
|
|
CheckedBackground="{DynamicResource Primary}"
|
|
CheckedBorderBrush="{DynamicResource Primary}"
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}"
|
|
Content="{ll:Str 启用桌宠移动}"
|
|
IsChecked="True"
|
|
ToggleBrush="{DynamicResource PrimaryDark}"
|
|
ToggleShadowColor="{x:Null}"
|
|
ToggleSize="14"
|
|
ToolTip="{ll:Str '启用移动互动,桌宠会在屏幕上乱动,移动互动概率为普通互动的一半.\ 如果嫌麻烦可以关掉'}" />
|
|
<pu:Switch
|
|
x:Name="SmartMoveEventBox"
|
|
Grid.Column="1"
|
|
Margin="10,0,0,0"
|
|
d:Checked="SmartMoveEventBox_Checked"
|
|
d:Unchecked="SmartMoveEventBox_Checked"
|
|
Background="Transparent"
|
|
BorderBrush="{DynamicResource PrimaryDark}"
|
|
BoxHeight="18"
|
|
BoxWidth="35"
|
|
CheckedBackground="{DynamicResource Primary}"
|
|
CheckedBorderBrush="{DynamicResource Primary}"
|
|
CheckedToggleBrush="{DynamicResource DARKPrimaryText}"
|
|
Content="{ll:Str '智能移动'}"
|
|
IsEnabled="{Binding ElementName=MoveEventBox, Path=IsChecked}"
|
|
ToggleBrush="{DynamicResource PrimaryDark}"
|
|
ToggleShadowColor="{x:Null}"
|
|
ToggleSize="14"
|
|
ToolTip="{ll:Str '当玩家在指定时间未对桌宠进行交互的时候,智能禁用移动功能\ 将在下次交互时解除'}" />
|
|
<TextBlock
|
|
Grid.Row="1"
|
|
Text="{ll:Str '智能移动判断时间间隔'}"
|
|
ToolTip="{ll:Str '当玩家在指定时间未对桌宠进行交互的时候,智能禁用移动功能\ 将在下次交互时解除'}" />
|
|
<ComboBox
|
|
x:Name="CBSmartMove"
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
d:SelectionChanged="CBSmartMove_SelectionChanged"
|
|
IsEnabled="{Binding ElementName=SmartMoveEventBox, Path=IsChecked}"
|
|
SelectedIndex="5"
|
|
Style="{DynamicResource StandardComboBoxStyle}"
|
|
ToolTip="{ll:Str '当玩家在指定时间未对桌宠进行交互的时候,智能禁用移动功能\ 将在下次交互时解除'}">
|
|
<ComboBoxItem Content="{ll:Str '30 秒'}">
|
|
<ComboBoxItem.Tag>
|
|
<sys:Int32>30</sys:Int32>
|
|
</ComboBoxItem.Tag>
|
|
</ComboBoxItem>
|
|
<ComboBoxItem Content="{ll:Str '1 分钟'}">
|
|
<ComboBoxItem.Tag>
|
|
<sys:Int32>60</sys:Int32>
|
|
</ComboBoxItem.Tag>
|
|
</ComboBoxItem>
|
|
<ComboBoxItem Content="{ll:Str '2 分钟'}">
|
|
<ComboBoxItem.Tag>
|
|
<sys:Int32>120</sys:Int32>
|
|
</ComboBoxItem.Tag>
|
|
</ComboBoxItem>
|
|
<ComboBoxItem Content="{ll:Str '5 分钟'}">
|
|
<ComboBoxItem.Tag>
|
|
<sys:Int32>300</sys:Int32>
|
|
</ComboBoxItem.Tag>
|
|
</ComboBoxItem>
|
|
<ComboBoxItem Content="{ll:Str '10 分钟'}">
|
|
<ComboBoxItem.Tag>
|
|
<sys:Int32>600</sys:Int32>
|
|
</ComboBoxItem.Tag>
|
|
</ComboBoxItem>
|
|
<ComboBoxItem Content="{ll:Str '20 分钟'}">
|
|
<ComboBoxItem.Tag>
|
|
<sys:Int32>1200</sys:Int32>
|
|
</ComboBoxItem.Tag>
|
|
</ComboBoxItem>
|
|
<ComboBoxItem Content="{ll:Str '30 分钟'}">
|
|
<ComboBoxItem.Tag>
|
|
<sys:Int32>1800</sys:Int32>
|
|
</ComboBoxItem.Tag>
|
|
</ComboBoxItem>
|
|
<ComboBoxItem Content="{ll:Str '40 分钟'}">
|
|
<ComboBoxItem.Tag>
|
|
<sys:Int32>2400</sys:Int32>
|
|
</ComboBoxItem.Tag>
|
|
</ComboBoxItem>
|
|
<ComboBoxItem Content="{ll:Str '50 分钟'}">
|
|
<ComboBoxItem.Tag>
|
|
<sys:Int32>3000</sys:Int32>
|
|
</ComboBoxItem.Tag>
|
|
</ComboBoxItem>
|
|
<ComboBoxItem Content="{ll:Str '60 分钟'}">
|
|
<ComboBoxItem.Tag>
|
|
<sys:Int32>3600</sys:Int32>
|
|
</ComboBoxItem.Tag>
|
|
</ComboBoxItem>
|
|
</ComboBox>
|
|
</Grid>
|
|
<Grid Grid.Row="7" Grid.Column="3">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
<ColumnDefinition Width="*" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
<WrapPanel Grid.ColumnSpan="3">
|
|
<TextBlock Text="{ll:Str '当前移动区域:'}" />
|
|
<TextBlock x:Name="textMoveArea" Text="{ll:Str '主屏幕'}" />
|
|
</WrapPanel>
|
|
|
|
<Button
|
|
x:Name="BtnSetMoveArea_Default"
|
|
Grid.Row="1"
|
|
Grid.Column="0"
|
|
Margin="5,5,5,5"
|
|
Padding="1"
|
|
d:Click="BtnSetMoveArea_Default_Click"
|
|
pu:ButtonHelper.CornerRadius="4"
|
|
Background="{DynamicResource SecondaryLight}"
|
|
Content="{ll:Str 重置为主屏}"
|
|
ToolTip="{ll:Str '设置桌宠只在主屏幕进行移动'}" />
|
|
<Button
|
|
x:Name="BtnSetMoveArea_DetectScreen"
|
|
Grid.Row="1"
|
|
Grid.Column="1"
|
|
Margin="5,5,5,5"
|
|
Padding="1"
|
|
d:Click="BtnSetMoveArea_DetectScreen_Click"
|
|
pu:ButtonHelper.CornerRadius="4"
|
|
Background="{DynamicResource SecondaryLight}"
|
|
Content="{ll:Str 设为当前屏幕}"
|
|
ToolTip="{ll:Str '设置桌宠只在当前桌宠所在的屏幕范围进行移动'}" />
|
|
<Button
|
|
x:Name="BtnSetMoveArea_Window"
|
|
Grid.Row="1"
|
|
Grid.Column="2"
|
|
Margin="5,5,5,5"
|
|
Padding="1"
|
|
d:Click="BtnSetMoveArea_Window_Click"
|
|
pu:ButtonHelper.CornerRadius="4"
|
|
Background="{DynamicResource SecondaryLight}"
|
|
Content="{ll:Str 自定移动范围}"
|
|
ToolTip="{ll:Str '手动设置桌宠可移动范围'}" />
|
|
</Grid>
|
|
<TextBlock
|
|
Grid.Row="0"
|
|
VerticalAlignment="Center"
|
|
Text="{ll:Str 数据计算}" />
|
|
<TextBlock
|
|
Grid.Row="1"
|
|
VerticalAlignment="Center"
|
|
Text="{ll:Str 显示状态}" />
|
|
<TextBlock
|
|
Grid.Row="5"
|
|
VerticalAlignment="Center"
|
|
Text="{ll:Str 桌宠移动}" />
|
|
<TextBlock
|
|
Grid.Row="2"
|
|
VerticalAlignment="Center"
|
|
Text="{ll:Str 计算间隔}" />
|
|
<Grid
|
|
Grid.Row="2"
|
|
Grid.Column="2"
|
|
ToolTip="{ll:Str '数据计算和互动计算时间间隔,间隔越短需要互动的频率可能会增加.\ 间隔越大越不容易打扰到当前工作'}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<Slider
|
|
x:Name="CalSlider"
|
|
VerticalAlignment="Center"
|
|
d:ValueChanged="CalSlider_ValueChanged"
|
|
IsSnapToTickEnabled="True"
|
|
LargeChange="1"
|
|
Maximum="60"
|
|
Minimum="5"
|
|
SmallChange=".5"
|
|
Style="{DynamicResource StandardSliderStyle}"
|
|
TickFrequency="0.1"
|
|
Value="15" />
|
|
<TextBlock
|
|
Grid.Column="1"
|
|
MinWidth="60"
|
|
Margin="10,0,0,0"
|
|
VerticalAlignment="Center"
|
|
Background="{x:Null}"
|
|
FontWeight="Bold"
|
|
Foreground="{DynamicResource DARKPrimaryDarker}"
|
|
Text="{ll:Str '\{0:f1} 秒',
|
|
ValueSource={Binding ElementName=CalSlider,
|
|
Path=Value}}" />
|
|
</Grid>
|
|
<TextBlock
|
|
Grid.Row="3"
|
|
VerticalAlignment="Center"
|
|
Text="{ll:Str '互动周期'}" />
|
|
<TextBlock
|
|
Grid.Row="4"
|
|
Grid.Column="2"
|
|
VerticalAlignment="Top"
|
|
FontSize="14">
|
|
<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 '分钟左右主动进行一次互动(走路发呆爬墙等)'}" />
|
|
</TextBlock>
|
|
<Grid
|
|
Grid.Row="3"
|
|
Grid.Column="2"
|
|
ToolTip="{ll:Str 互动周期决定在交互结束后大约经历多少计算间隔后再次进行自主行动}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<Slider
|
|
x:Name="InteractionSlider"
|
|
VerticalAlignment="Center"
|
|
d:ValueChanged="InteractionSlider_ValueChanged"
|
|
IsSnapToTickEnabled="True"
|
|
LargeChange="5"
|
|
Maximum="1000"
|
|
Minimum="30"
|
|
SmallChange="1"
|
|
Style="{DynamicResource StandardSliderStyle}"
|
|
TickFrequency="1"
|
|
Value="200" />
|
|
<TextBlock
|
|
Grid.Column="1"
|
|
Width="60"
|
|
Margin="10,0,0,0"
|
|
VerticalAlignment="Center"
|
|
Background="{x:Null}"
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
Foreground="{DynamicResource DARKPrimaryDarker}"
|
|
Text="{Binding ElementName=InteractionSlider, Path=Value}" />
|
|
|
|
</Grid>
|
|
|
|
</Grid>
|
|
<TextBlock
|
|
Margin="0,10,0,0"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Top"
|
|
Background="{x:Null}"
|
|
TextWrapping="Wrap">
|
|
<Run
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
Text="{ll:Str 操作设置}" /><LineBreak />
|
|
<Run Text="{ll:Str 游戏操作相关设置}" />
|
|
</TextBlock>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="15" />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="35" />
|
|
<RowDefinition Height="35" />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock
|
|
Grid.Row="0"
|
|
VerticalAlignment="Center"
|
|
Text="{ll:Str 长按间隔}" />
|
|
<TextBlock
|
|
Grid.Row="1"
|
|
VerticalAlignment="Center"
|
|
Text="{ll:Str 桌宠名字}" />
|
|
<TextBox
|
|
x:Name="TextBoxPetName"
|
|
Grid.Row="1"
|
|
Grid.Column="2"
|
|
d:TextChanged="TextBoxPetName_TextChanged"
|
|
FontSize="16"
|
|
Style="{DynamicResource StandardTextBoxStyle}" />
|
|
<Grid
|
|
Grid.Row="0"
|
|
Grid.Column="2"
|
|
ToolTip="{ll:Str '数据计算和互动计算时间间隔,间隔越短需要互动的频率可能会增加\ 间隔越大越不容易打扰到当前工作'}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<Slider
|
|
x:Name="PressLengthSlider"
|
|
VerticalAlignment="Center"
|
|
d:ValueChanged="PressLengthSlider_ValueChanged"
|
|
IsSnapToTickEnabled="True"
|
|
LargeChange="0.1"
|
|
Maximum="5"
|
|
Minimum="0.05"
|
|
SmallChange=".05"
|
|
Style="{DynamicResource StandardSliderStyle}"
|
|
TickFrequency="0.01"
|
|
Value="0.5" />
|
|
<TextBlock
|
|
Grid.Column="1"
|
|
Margin="10,0,0,0"
|
|
VerticalAlignment="Center"
|
|
Background="{x:Null}"
|
|
FontWeight="Bold"
|
|
Foreground="{DynamicResource DARKPrimaryDarker}"
|
|
Text="{ll:Str '\{0:F2} 秒',
|
|
ValueSource={Binding ElementName=PressLengthSlider,
|
|
Path=Value}}" />
|
|
<!-- {Binding ElementName=PressLengthSlider,Path=Value,StringFormat={}{0:f2} 秒} -->
|
|
</Grid>
|
|
</Grid>
|
|
<TextBlock
|
|
Margin="0,5,0,0"
|
|
HorizontalAlignment="Left"
|
|
VerticalAlignment="Top"
|
|
Background="{x:Null}"
|
|
TextWrapping="Wrap">
|
|
<Run
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
Text="{ll:Str 音乐识别设置}" /><LineBreak />
|
|
<Run Text="{ll:Str 设置识别音乐播放特殊动作阈值}" /> <LineBreak />
|
|
<Run Text="{ll:Str 当前播放音量大小}" />
|
|
:<Run x:Name="RVoice" />
|
|
</TextBlock>
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto" />
|
|
<ColumnDefinition Width="15" />
|
|
<ColumnDefinition />
|
|
<ColumnDefinition Width="Auto" />
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="35" />
|
|
<RowDefinition Height="35" />
|
|
</Grid.RowDefinitions>
|
|
<TextBlock
|
|
Grid.Row="0"
|
|
VerticalAlignment="Center"
|
|
Text="{ll:Str 触发音量}"
|
|
ToolTip="{ll:Str 当实时播放音量达到该值时运行音乐动作}" />
|
|
<Slider
|
|
x:Name="VoiceCatchSilder"
|
|
Grid.Column="2"
|
|
VerticalAlignment="Center"
|
|
d:ValueChanged="VoiceCatchSilder_ValueChanged"
|
|
IsSnapToTickEnabled="True"
|
|
LargeChange=".5"
|
|
Maximum="1"
|
|
Minimum="0"
|
|
SmallChange=".02"
|
|
Style="{DynamicResource StandardSliderStyle}"
|
|
TickFrequency="0.01"
|
|
ToolTip="{ll:Str 当实时播放音量达到该值时运行音乐动作}"
|
|
Value="0.3" />
|
|
<TextBlock
|
|
Grid.Column="3"
|
|
Margin="15,0,0,0"
|
|
VerticalAlignment="Center"
|
|
Background="{x:Null}"
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
Foreground="{DynamicResource DARKPrimaryDarker}"
|
|
Text="{Binding ElementName=VoiceCatchSilder, Path=Value, StringFormat=p0}"
|
|
ToolTip="{ll:Str 当实时播放音量达到该值时运行特殊音乐动作}" />
|
|
<TextBlock
|
|
Grid.Row="1"
|
|
VerticalAlignment="Center"
|
|
Text="{ll:Str 高潮音量}"
|
|
ToolTip="{ll:Str 当实时播放音量达到该值时运行特殊音乐动作}" />
|
|
<Slider
|
|
x:Name="VoiceMaxSilder"
|
|
Grid.Row="1"
|
|
Grid.Column="2"
|
|
VerticalAlignment="Center"
|
|
d:ValueChanged="VoiceCatchSilder_ValueChanged"
|
|
IsSnapToTickEnabled="True"
|
|
LargeChange=".05"
|
|
Maximum="1"
|
|
Minimum="{Binding ElementName=VoiceCatchSilder, Path=Value}"
|
|
SmallChange=".01"
|
|
Style="{DynamicResource StandardSliderStyle}"
|
|
TickFrequency="0.01"
|
|
ToolTip="{ll:Str 当实时播放音量达到该值时运行特殊音乐动作}"
|
|
Value="0.75" />
|
|
<TextBlock
|
|
Grid.Row="1"
|
|
Grid.Column="3"
|
|
Margin="15,0,0,0"
|
|
VerticalAlignment="Center"
|
|
Background="{x:Null}"
|
|
FontSize="18"
|
|
FontWeight="Bold"
|
|
Foreground="{DynamicResource DARKPrimaryDarker}"
|
|
Text="{Binding ElementName=VoiceMaxSilder, Path=Value, StringFormat=p0}"
|
|
ToolTip="{ll:Str 当实时播放音量达到该值时运行特殊音乐动作}" />
|
|
</Grid>
|
|
</StackPanel>
|
|
</ScrollViewer>
|
|
</Grid>
|
|
</Page>
|