41 lines
1.8 KiB
XML
41 lines
1.8 KiB
XML
<Window x:Class="Wpf_AiSportsMicrospace.MainWindow"
|
|
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:Wpf_AiSportsMicrospace"
|
|
Loaded="Window_Loaded" Closing="Window_Closing"
|
|
mc:Ignorable="d" Title="AI运动微空间" Height="700" Width="1200">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="250"/>
|
|
<ColumnDefinition Width="*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<!-- 左侧控制面板 -->
|
|
<StackPanel Grid.Column="0" Margin="10">
|
|
<ComboBox x:Name="sportList"
|
|
Height="25"
|
|
DisplayMemberPath="Name"
|
|
SelectedValuePath="Key"
|
|
SelectionChanged="sportList_SelectionChanged" d:IsHidden="True"/>
|
|
<TextBox x:Name="host" Margin="0,10,0,0" Text="192.168.3.64"/>
|
|
<TextBox x:Name="userName" Margin="0,10,0,0" Text="admin"/>
|
|
<TextBox x:Name="password" Margin="0,10,0,0" Text="yd708090"/>
|
|
<TextBox x:Name="port" Margin="0,10,0,0" Text="554"/>
|
|
|
|
<Button Content="Ping" Margin="0,10,0,0" Click="ping_Click"/>
|
|
<Button x:Name="startOrStop" Content="开始" Margin="0,10,0,0" Click="startOrStop_Click"/>
|
|
|
|
<TextBlock x:Name="sportCounts" Text="0" Margin="0,20,0,0"/>
|
|
<TextBlock x:Name="sportTimes" Text="00'00''"/>
|
|
</StackPanel>
|
|
|
|
<!-- 右侧视频预览 -->
|
|
<Grid Grid.Column="1" Background="Black">
|
|
<Image x:Name="videoImage" Stretch="Uniform" />
|
|
<Canvas x:Name="overlayCanvas" IsHitTestVisible="False" />
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|