mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-03 00:00:49 +08:00
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<UserControl x:Class="Serein.WorkBench.Themes.IOCObjectViewControl"
|
|
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:local="clr-namespace:Serein.WorkBench.Themes"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="450" d:DesignWidth="800">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<GroupBox Grid.Row="0" Header="已注册待绑定的类型" Margin="5">
|
|
<ListBox x:Name="TypeListBox" Background="#E3F6FA"/>
|
|
</GroupBox>
|
|
<GroupBox Grid.Row="1" Header="完成注入的实例" Margin="5">
|
|
<ListBox x:Name="DependenciesListBox" Background="#E3FAE9"/>
|
|
</GroupBox>
|
|
<!--<GroupBox Grid.Row="3" Header="未完成注入的实例" Margin="5">
|
|
<ListBox x:Name="UnfinishedDependenciesListBox" Background="#FFE9D7"/>
|
|
</GroupBox>-->
|
|
</Grid>
|
|
</UserControl>
|