asmrobot
2019-11-13 576b92fd82f568572bc4beb125fa0ba0191a602f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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>