Sic01/FrameworkLocal/RTCore/Backend/BackendSCConfigView.xaml

19 lines
1003 B
Plaintext
Raw Normal View History

2023-01-16 11:14:35 +08:00
<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="*"></RowDefinition>
</Grid.RowDefinitions>
<Button HorizontalAlignment="Left" Margin="20,0,0,0" Command="{Binding ReloadCommand}" Content="ReloadA" Width="100" Height="30" ></Button>
<control:SCItemEditor Grid.Row="1" ></control:SCItemEditor>
</Grid>
</UserControl>