| 12345678910111213141516171819202122232425 | <Window x:Class="Aitex.UI.RecipeEditor.View.RecipeNameInputDlg"    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"    Title="新建配方"        WindowStartupLocation="CenterOwner"        WindowStyle="SingleBorderWindow" ResizeMode="NoResize" ShowInTaskbar="False"        Background="LightSkyBlue" SizeToContent="WidthAndHeight">    <StackPanel>        <TextBlock Text="请选择配方类型:" HorizontalAlignment="Left" FontSize="12" Margin="15" />        <StackPanel Orientation="Horizontal" Margin="5,0,0,0">            <RadioButton Content="Chuck"      Margin="5,0,0,0" IsChecked="True" Checked="RadioButton_Checked"/>            <RadioButton Content="DeChuck"    Margin="5,0,0,0" Checked="RadioButton_Checked"/>            <RadioButton Content="Process"    Margin="5,0,0,0" Checked="RadioButton_Checked"/>            <RadioButton Content="Clean"      Margin="5,0,0,0" Checked="RadioButton_Checked"/>        </StackPanel>        <TextBlock Text="请输入配方名称:" HorizontalAlignment="Left" FontSize="12" Margin="15" x:Name="labelCaption"/>        <TextBox x:Name="textBoxInput" FontSize="12"  TextChanged="textBoxInput_TextChanged"  Width="150" HorizontalAlignment="Left" Margin="15,0,150,0" BorderThickness="0,0,0,1" Background="Transparent"/>        <StackPanel Orientation="Horizontal"  Margin="10">            <Button Content="OK" x:Name="buttonOK" Margin="5,3,5,0" Width="75" FontSize="12" IsDefault="True" Click="buttonOK_Click" />            <Button Content="Cancel" x:Name="buttonCancel" Margin="20,3,5,0" Width="75" FontSize="12" IsCancel="True" Click="buttonCancel_Click" />        </StackPanel>    </StackPanel></Window>
 |