RyLiveTools/Source/FrmWeb.xaml

16 lines
930 B
Plaintext
Raw Permalink Normal View History

<hc:Window x:Class="LiveTools.FrmWeb"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:LiveTools"
xmlns:hc="https://handyorg.github.io/handycontrol"
mc:Ignorable="d"
Style="{StaticResource WindowWin10}"
Background="{DynamicResource RegionBrush}"
Title="直播界面" Height="500" Width="800" Loaded="Window_Loaded" Closing="Window_Closing">
<Grid Name="MainGrid" Margin="0,54,0,0">
<Button x:Name="BtnHidden" Content="隐藏窗口" Width="73" Margin="12,-37,0,0" Style="{StaticResource ButtonPrimary}" HorizontalAlignment="Left" VerticalAlignment="Top" Click="BtnHidden_Click"/>
</Grid>
</hc:Window>