| 123456789101112131415161718192021222324 | <Window x:Class="PunkHPX8_Themes.UserControls.RecipeNameDialog"             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:PunkHPX8_Themes.UserControls"             mc:Ignorable="d" Name="self"             Height="230" Width="400"        WindowStyle="SingleBorderWindow" WindowStartupLocation="CenterScreen" Title="New Recipe">    <Grid Background="{DynamicResource Table_BG_Title}">        <Grid.RowDefinitions>            <RowDefinition/>            <RowDefinition Height="50"></RowDefinition>        </Grid.RowDefinitions>        <Grid >            <Label Content="Recipe Name:" VerticalContentAlignment="Center" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,42,0,0"/>            <TextBox Text="{Binding ElementName=self,Path=RecipeName}" Height="35" Width="280" VerticalContentAlignment="Center" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="90,37,0,0" Focusable="True" />            <Label Content="Description:" VerticalContentAlignment="Center" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,111,0,0"/>            <TextBox Text="{Binding RecipeDescription, ElementName=self}" Height="35" Width="280" VerticalContentAlignment="Center" HorizontalAlignment="Left" VerticalAlignment="Top" Margin="90,106,0,0" Focusable="True" />        </Grid>        <Button Grid.Row="1" Style="{StaticResource SysBtnStyle}" Content="Confirm" Height="35" Width="80" Click="Button_Click"/>    </Grid></Window>
 |