------ #### V1.0.2404.1201 - 新增支持手动运行规则。 - 规则播放时间间隔不再针对全局声效,而只针对当前规则声效。 - 修复规则中播放文件夹可能导致无法执行的BUG。 - 修复规则不勾选礼物和点赞,则无法执行的BUG。
22 lines
1.6 KiB
XML
22 lines
1.6 KiB
XML
<Border xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
BorderThickness="0,1,0,0"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:userControl="clr-namespace:LiveTools.Content"
|
|
xmlns:hc="https://handyorg.github.io/handycontrol"
|
|
x:Class="LiveTools.Content.MainWinContent" Loaded="Border_Loaded">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition x:Name="ColumnDefinitionLeft" Width="250" MinWidth="240" MaxWidth="400"/>
|
|
<ColumnDefinition x:Name="ColumnDefinitionContent" />
|
|
</Grid.ColumnDefinitions>
|
|
<Button x:Name="ButtonShiftOut" Click="OnLeftMainContentShiftOut" hc:IconElement.Geometry="{StaticResource LeftGeometry}" Padding="8 8 0 8" HorizontalAlignment="Right" VerticalAlignment="Top" Margin="0 26 -16 0" Style="{StaticResource ButtonIconCircular}" />
|
|
<userControl:MainContent Grid.Column="1" x:Name="MainContent" />
|
|
<userControl:LeftMainContent Grid.Column="0" x:Name="LeftMainContent">
|
|
<UIElement.RenderTransform>
|
|
<TranslateTransform />
|
|
</UIElement.RenderTransform>
|
|
</userControl:LeftMainContent>
|
|
<GridSplitter x:Name="GridSplitter" Margin="0,26,0,26" Grid.Column="0" HorizontalAlignment="Right" Width="4" Background="Transparent"/>
|
|
<Button Grid.Column="0" x:Name="ButtonShiftIn" Click="OnLeftMainContentShiftIn" Visibility="Collapsed" hc:IconElement.Geometry="{StaticResource RightGeometry}" Padding="8 8 0 8" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="-12 26 0 0" Style="{StaticResource ButtonIconCircular}" />
|
|
</Grid>
|
|
</Border> |