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.
31 lines
1.6 KiB
31 lines
1.6 KiB
3 years ago
|
<Window x:Class="ECMonitor.Views.FrmVideoPlayer"
|
||
|
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="530" Width="800" WindowStyle="None" WindowStartupLocation="CenterScreen" Loaded="Window_Loaded" ResizeMode="NoResize" MouseDoubleClick="Window_MouseDoubleClick" SizeChanged="Window_SizeChanged" KeyDown="Window_KeyDown" MouseMove="Window_MouseMove">
|
||
|
<Grid Background="{DynamicResource PrimaryBackGroupBrush}">
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="16"/>
|
||
|
<RowDefinition Height="*"/>
|
||
|
</Grid.RowDefinitions>
|
||
|
<StackPanel x:Name="planMain" HorizontalAlignment="Stretch" Grid.Row="0" Grid.RowSpan="2" VerticalAlignment="Stretch" Margin="2,2,2,2"></StackPanel>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
<StackPanel x:Name="topPlane" Grid.Row="0" Canvas.ZIndex="3" HorizontalAlignment="Right" Background="{DynamicResource PrimaryBarBrush}" >
|
||
|
|
||
|
<Button x:Name="btnClose" Height="15" Width="15" Style="{DynamicResource TopRightButtonStyle}" Margin="0,0,6,0" Click="btnClose_Click" >
|
||
|
<WrapPanel >
|
||
|
<Image Source="/close.png" Height="13" Width="13" />
|
||
|
</WrapPanel>
|
||
|
</Button>
|
||
|
</StackPanel>
|
||
|
|
||
|
</Grid>
|
||
|
</Window>
|