BackendSCConfigView.xaml 1002 B

12345678910111213141516171819
  1. <UserControl x:Class="MECF.Framework.RT.Core.Backend.BackendSCConfigView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:control="clr-namespace:MECF.Framework.UI.Core.Control;assembly=MECF.Framework.UI.Core"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="35"></RowDefinition>
  12. <RowDefinition Height="*"></RowDefinition>
  13. </Grid.RowDefinitions>
  14. <Button HorizontalAlignment="Left" Margin="20,0,0,0" Command="{Binding ReloadCommand}" Content="Reload" Width="100" Height="30" ></Button>
  15. <control:SCItemEditor Grid.Row="1" ></control:SCItemEditor>
  16. </Grid>
  17. </UserControl>