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.1 KiB
21 lines
1.1 KiB
<Window x:Class="DemoUI.MainWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
|
|
Title="DemoCSharp" Height="700" Width="1000" WindowStartupLocation="CenterScreen" Closed="Window_Closed" WindowState="Minimized">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="450*"></RowDefinition>
|
|
<RowDefinition Height="250*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="720*"/>
|
|
<ColumnDefinition Width="280*"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Border Background="Black" HorizontalAlignment="Left" Width="790" Grid.RowSpan="2">
|
|
<Image Name="video" Stretch="Fill" VerticalAlignment="Top" HorizontalAlignment="Left"/>
|
|
</Border>
|
|
<TextBox HorizontalAlignment="Left" TextWrapping="Wrap" Name="facelog" Text="" VerticalAlignment="Top" Width="286" Height="700" Grid.Column="1" Grid.Row="0" MouseEnter="Facelog_MouseEnter" MouseLeave="Facelog_MouseLeave"/>
|
|
</Grid>
|
|
|
|
</Window>
|
|
|