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.
 
 

26 lines
1.3 KiB

<UserControl x:Class="ECMonitor.Views.RtspMonitor"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:ECMonitor.Views"
mc:Ignorable="d"
xmlns:prism="http://prismlibrary.com/"
prism:ViewModelLocator.AutoWireViewModel="True"
d:DesignHeight="450" d:DesignWidth="800">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="60"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Button Grid.Row="0" Content="开始" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Name="btnStart" Click="btnStart_Click"/>
<Button Grid.Row="0" Content="删除" HorizontalAlignment="Left" Margin="100,10,0,0" VerticalAlignment="Top" Name="btnStop" Click="btnStop_Click" />
<!--<UC:UCRtspVlcVideo x:Name="rtspVideo" Grid.Row="1" HorizontalAlignment="Stretch" Margin="0,0,0,0" VerticalAlignment="Stretch" />-->
<WrapPanel x:Name="panMain" Grid.Row="1" />
</Grid>
</UserControl>