| 12345678910111213141516171819202122232425262728293031323334353637 | <wpf:ThemableChromelessWindow x:Class="InABox.DynamicGrid.DynamicEditorForm"                             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:InABox.DynamicGrid"                             xmlns:syncfusion="http://schemas.syncfusion.com/wpf"                             xmlns:wpf="clr-namespace:InABox.Wpf"                             mc:Ignorable="d"                             Title="Dynamic Editor"                             WindowStartupLocation="CenterScreen"                             Closing="Window_Closing"                             syncfusion:SkinStorage.VisualStyle="Metro"                             TitleTextAlignment="Center"                             IconAlignment="Left"                             TitleBarBackground="WhiteSmoke"                             TitleBarForeground="Black"                             ResizeBorderThickness="0.75"                             LeftHeaderItemsSource="{DynamicResource rightHeaderItems}"                             BorderBrush="Gray"                             BorderThickness="0,0.75,0,0"                             Background="White"                             CornerRadius="0"                             d:DesignHeight="400" d:DesignWidth="400">    <syncfusion:ChromelessWindow.DataContext>        <local:DynamicEditorFormModel />    </syncfusion:ChromelessWindow.DataContext>    <syncfusion:ChromelessWindow.Resources>        <!--<local:MyObservableCollection x:Key="rightheaderItems">            <Button Content="Hi There"/>            <syncfusion:ButtonAdv x:Name="Wiki" Height="25" Width="100"  Label="Online Documentation" SizeMode="Normal" Click="Wiki_Click" SmallIcon="pack://application:,,,/Resources/help.png"/>        </local:MyObservableCollection>-->    </syncfusion:ChromelessWindow.Resources>    <local:EmbeddedDynamicEditorForm x:Name="Form"/></wpf:ThemableChromelessWindow>
 |