26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<Window x:Class="AnotherReplayReader.Debug"
|
|
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:AnotherReplayReader"
|
|
mc:Ignorable="d"
|
|
Title="Debug" Height="450" Width="800">
|
|
<DockPanel Margin="10,10,10,10">
|
|
<StackPanel DockPanel.Dock="Top"
|
|
Orientation="Horizontal"
|
|
Margin="0,0,0,10">
|
|
<Button Padding="8,2"
|
|
Margin="0,0,10,0"
|
|
Content="导出日志"
|
|
Click="OnExport_Click" />
|
|
<Button Padding="8,2"
|
|
Content="清空日志"
|
|
Click="OnClear_Click" />
|
|
</StackPanel>
|
|
<TextBox x:Name="_textBox"
|
|
TextWrapping="Wrap"
|
|
ScrollViewer.VerticalScrollBarVisibility="Auto" />
|
|
</DockPanel>
|
|
</Window>
|