| 123456789101112131415161718 | <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="{DynamicResource GlobalLableTitleRecipeNameInput}"        WindowStartupLocation="CenterOwner"        WindowStyle="SingleBorderWindow" ResizeMode="NoResize" ShowInTaskbar="False"        Background="LightSkyBlue" SizeToContent="WidthAndHeight">    <StackPanel>        <TextBlock Text="{DynamicResource GlobalLableInfoRecipeNameInput}" HorizontalAlignment="Left" FontSize="12" Margin="15" x:Name="labelCaption"/>        <TextBox x:Name="textBoxInput" FontSize="12"  TextChanged="textBoxInput_TextChanged"  Width="300" Margin="5"/>        <StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="10">            <Button Content="{DynamicResource GlobalLableButtonOk}" x:Name="buttonOK" Margin="10,3,5,0" Width="75" FontSize="12" IsDefault="True" Click="buttonOK_Click" />            <Button Content="{DynamicResource GlobalLableButtonCancel}" x:Name="buttonCancel" Margin="0,3,5,0" Width="75" FontSize="12" IsCancel="True" Click="buttonCancel_Click" />        </StackPanel>    </StackPanel></Window>
 |