12345678910111213141516171819202122 |
- <Window x:Class="FISSDKDemo.LiveVideoOutputWindow"
- 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:FISSDKDemo" WindowStartupLocation="CenterScreen" WindowStyle="None"
- mc:Ignorable="d" Loaded="Window_Loaded" WindowChrome.WindowChrome="{DynamicResource WindowChromeKey}"
- Title="LiveVideoOutputWindow" Height="450" Width="800">
- <Window.Resources>
- <WindowChrome x:Key="WindowChromeKey">
- <WindowChrome.ResizeBorderThickness>
- <Thickness>0</Thickness>
- </WindowChrome.ResizeBorderThickness>
- </WindowChrome>
- </Window.Resources>
- <Grid>
- <Border Background="Black" BorderBrush="Gray" BorderThickness="1">
- <Image x:Name="UsImage"/>
- </Border>
- <TextBlock x:Name="CurrentTime" VerticalAlignment="Center" HorizontalAlignment="Center" Foreground="Orange" Margin="20" FontSize="40"/>
- </Grid>
- </Window>
|