<Window x:Class="RichCreator.Editor.Tools.SerializeInput"
|
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:RichCreator.Editor.Tools"
|
mc:Ignorable="d"
|
WindowStyle="ToolWindow"
|
Title="SerializeInput" Height="200" Width="400" >
|
<Grid>
|
<Grid.RowDefinitions>
|
<RowDefinition Height="*" />
|
<RowDefinition Height="48" />
|
</Grid.RowDefinitions>
|
<TextBox TextWrapping="Wrap" AcceptsReturn="True" x:Name="InputString" />
|
<Button Grid.Row="1" HorizontalAlignment="Right" Padding="5" Margin="5" Content="生成" Click="Button_Click" />
|
</Grid>
|
</Window>
|