48 lines
1.8 KiB
XML
48 lines
1.8 KiB
XML
<basewindows:BaseWindow
|
|
x:Class="SamplePre.UIWpf.SampleManager.chirld.UnitDetailWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:basewindows="clr-namespace:SamplePre.UIWpf.BaseWindows"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Title="详情"
|
|
Width="400"
|
|
Height="350"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition Height="40" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<ListBox Grid.Row="0" ItemsSource="{Binding FaultInfos}">
|
|
<ListBox.ItemTemplate>
|
|
<DataTemplate>
|
|
<StackPanel Orientation="Horizontal">
|
|
<Border
|
|
Width="6"
|
|
Height="6"
|
|
Margin="2"
|
|
Background="{Binding RunColor}"
|
|
CornerRadius="3" />
|
|
<TextBlock
|
|
Margin="3,0"
|
|
VerticalAlignment="Center"
|
|
Text="{Binding FaultName}" />
|
|
<TextBlock
|
|
Margin="10,0"
|
|
VerticalAlignment="Center"
|
|
Text="{Binding FaultDesc}" />
|
|
</StackPanel>
|
|
</DataTemplate>
|
|
</ListBox.ItemTemplate>
|
|
</ListBox>
|
|
<StackPanel Grid.Row="2" Orientation="Horizontal">
|
|
<TextBlock Text="当前参数信息:" />
|
|
<TextBlock Text="-" />
|
|
</StackPanel>
|
|
</Grid>
|
|
</basewindows:BaseWindow>
|