| 123456789101112131415161718192021 | <UserControl x:Class="MECF.Framework.RT.Core.Backend.BackendSCConfigView"             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:control="clr-namespace:MECF.Framework.UI.Core.Control;assembly=MECF.Framework.UI.Core"             mc:Ignorable="d"              d:DesignHeight="450" d:DesignWidth="800">    <Grid>        <Grid.RowDefinitions>            <RowDefinition Height="35"></RowDefinition>            <RowDefinition Height="35"></RowDefinition>            <RowDefinition Height="*"></RowDefinition>        </Grid.RowDefinitions>        <Button HorizontalAlignment="Left" Margin="20,0,0,0" Command="{Binding ReloadCommand}" Content="Reload" Width="100" Height="30"  ></Button>        <StackPanel x:Name="sp1" Grid.Row="1" Orientation="Horizontal" Margin="0,10,0,0"></StackPanel>        <control:SCItemEditor Grid.Row="2" ></control:SCItemEditor>    </Grid></UserControl>
 |