| 12345678910111213141516171819202122232425262728 | <Window x:Class="Venus_Themes.UserControls.RecipeNameInputDlg"             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"              xmlns:d="http://schemas.microsoft.com/expression/blend/2008"              xmlns:local="clr-namespace:Venus_Themes.UserControls"            Title="New Recipe"        WindowStartupLocation="CenterOwner"        WindowStyle="SingleBorderWindow" ResizeMode="NoResize" ShowInTaskbar="False"        Background="LightSkyBlue" SizeToContent="WidthAndHeight">    <StackPanel>        <TextBlock Text="Select Recipe Type:" HorizontalAlignment="Left" FontSize="12" Margin="15" />        <StackPanel Orientation="Horizontal" Margin="5,0,0,0">            <RadioButton Content="Chuck"      Margin="5,0,0,0" Checked="RadioButton_Checked" x:Name="chuckRadioButton"/>            <RadioButton Content="DeChuck"    Margin="5,0,0,0" Checked="RadioButton_Checked" x:Name="dechuckRadioButton"/>            <RadioButton Content="Process"    Margin="5,0,0,0" Checked="RadioButton_Checked" IsChecked="True"/>            <RadioButton Content="Clean"      Margin="5,0,0,0" Checked="RadioButton_Checked"/>        </StackPanel>        <TextBlock Text="Input Recipe Name:" 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>
 |