VPet/VPet-Simulator.Windows/WinDesign/winConsole.xaml
2023-01-26 23:15:37 +08:00

55 lines
3.3 KiB
XML

<Window x:Class="VPet_Simulator.Windows.winConsole" 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:VPet_Simulator.Windows" mc:Ignorable="d" Title="桌宠管理控制台" Height="450" Width="450">
<TabControl>
<TabItem Header="动画列表">
<Grid>
<Label Background="{x:Null}" Content="双击查看动画效果" />
<Label x:Name="LabelNowPlay" Background="{x:Null}" Content="" HorizontalAlignment="Right" />
<ListBox x:Name="GraphListBox" Margin="0,20,0,0" MouseDoubleClick="GraphListBox_MouseDoubleClick" />
</Grid>
</TabItem>
<TabItem Header="显示逻辑">
<Grid>
<Label Background="{x:Null}" Content="双击运行显示效果" />
<Label x:Name="LabelSuccess" Background="{x:Null}" Content="" HorizontalAlignment="Right" />
<ListBox x:Name="DisplayListBox" Margin="0,20,0,0" MouseDoubleClick="DisplayListBox_MouseDoubleClick">
<ListBoxItem Content="DisplayNomal" />
<ListBoxItem Content="DisplayTouchHead" />
<ListBoxItem Content="DisplayBoring" />
<ListBoxItem Content="DisplaySquat" />
<ListBoxItem Content="DisplaySquating" />
<ListBoxItem Content="DisplaySleep" />
<ListBoxItem Content="DisplaySleeping" />
<ListBoxItem Content="DisplaySleepingForce" />
<ListBoxItem Content="DisplayRaised" />
<ListBoxItem Content="DisplayFalled_Left" />
<ListBoxItem Content="DisplayFalled_Right" />
<ListBoxItem Content="DisplayWalk_Left" />
<ListBoxItem Content="DisplayWalk_Right" />
<ListBoxItem Content="DisplayCrawl_Left" />
<ListBoxItem Content="DisplayCrawl_Right" />
<ListBoxItem Content="DisplayClimb_Left_UP" />
<ListBoxItem Content="DisplayClimb_Left_DOWN" />
<ListBoxItem Content="DisplayClimb_Right_UP" />
<ListBoxItem Content="DisplayClimb_Right_DOWN" />
<ListBoxItem Content="DisplayClimb_Top_Right" />
<ListBoxItem Content="DisplayClimb_Top_Left" />
<ListBoxItem Content="DisplayFall_Left" />
<ListBoxItem Content="DisplayFall_Right" />
</ListBox>
</Grid>
</TabItem>
<TabItem Header="说话">
<Grid>
<Label Background="{x:Null}" Content="输入要说的话,按说话键发送" />
<TextBox x:Name="SayTextBox" TextWrapping="Wrap" Text="在这里输入要说话的内容" VerticalAlignment="Top"
Margin="5,25,5,0" Height="60" AcceptsReturn="True" VerticalContentAlignment="Top" />
<Button VerticalAlignment="Bottom" Content="说话" Click="Say_Click" />
</Grid>
</TabItem>
</TabControl>
</Window>