You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.6 KiB
33 lines
1.6 KiB
3 years ago
|
<Window x:Class="ECMonitor.Views.FrmVideoWanging"
|
||
|
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:ECMonitor.Views"
|
||
|
mc:Ignorable="d"
|
||
|
Title="预警监控弹窗" Height="650" Width="900" WindowStyle="None" Loaded="Window_Loaded" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" MouseMove="Window_MouseMove" Closed="Window_Closed" Icon="/Views/报警 (1).png">
|
||
|
|
||
|
<Grid Background="{DynamicResource PrimaryBackGroupBrush}">
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="1" />
|
||
|
<RowDefinition Height="*" />
|
||
|
<RowDefinition Height=" 40" />
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
|
||
|
<StackPanel x:Name="topPlane" Grid.Row="2" Canvas.ZIndex="2" Orientation="Horizontal" HorizontalAlignment="Right" Background="{DynamicResource PrimaryBarBrush}" >
|
||
|
|
||
|
<CheckBox x:Name="chkAutoClose" Content="自动关闭" Margin="0,0,20,0" VerticalAlignment="Stretch" Foreground="White" FontSize="16" IsChecked="True" Click="chkAutoClose_Click" />
|
||
|
|
||
|
<Button x:Name="btnClose" Content="关闭" Template="{DynamicResource ButtonTemplate}" Click="btnClose_Click" >
|
||
|
|
||
|
</Button>
|
||
|
</StackPanel>
|
||
|
|
||
|
<WrapPanel x:Name="panMain" Grid.Row="1" Margin="2,2,2,2" >
|
||
|
|
||
|
</WrapPanel>
|
||
|
|
||
|
</Grid>
|
||
|
</Window>
|