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.
21 lines
1.4 KiB
21 lines
1.4 KiB
<windows:BaseWindow xmlns:windows="clr-namespace:KGIS.Framework.Utils;assembly=KGIS.Framework.Utils" x:Class="Kingo.Plugin.General.View.UCVideo" |
|
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:Kingo.Plugin.General.View" |
|
mc:Ignorable="d" |
|
d:DesignHeight="450" d:DesignWidth="800"> |
|
<Grid> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="92*"></RowDefinition> |
|
<RowDefinition Height="8*"></RowDefinition> |
|
</Grid.RowDefinitions> |
|
<MediaElement x:Name="MediaPlayer" LoadedBehavior="Manual" Stretch="Fill" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="0" Margin="5" /> |
|
<StackPanel Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Horizontal" > |
|
<Button x:Name="btnPlay" Content="播放" Width="50" Height="25" Click="btnPlay_Click" Margin="5" HorizontalAlignment="Center" VerticalAlignment="Center"></Button> |
|
<Button x:Name="btnStop" Content="暂停" Width="50" Height="25" Click="btnStop_Click" HorizontalAlignment="Center" VerticalAlignment="Center" ></Button> |
|
</StackPanel> |
|
|
|
</Grid> |
|
</windows:BaseWindow>
|
|
|