16 lines
945 B
XML
16 lines
945 B
XML
<UserControl x:Class="OperationControl.Controls.GstVideoView"
|
|
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:OperationControl.Controls"
|
|
mc:Ignorable="d"
|
|
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
|
|
xmlns:wfi="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
|
|
xmlns:ffme="clr-namespace:Unosquare.FFME;assembly=ffme.win"
|
|
Height="247" Width="420">
|
|
<Grid Background="Black">
|
|
<ffme:MediaElement x:Name="Media" Background="Gray" LoadedBehavior="Play" UnloadedBehavior="Manual" />
|
|
</Grid>
|
|
</UserControl>
|