<ItemsControl>
<ItemsControl.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel Orientation="Vertical"/>
</ItemsPanelTemplate>
</ItemsControl.ItemsPanel>
<ItemsControl.ItemTemplate>
<DataTemplate>
<Grid>
<TextBlock
Margin="0,9,0,0"
lan:Xaml.Key="CurrentCT"
Style="{DynamicResource ParameterTextBlockRight}">
当前CT
</TextBlock>
<TextBox
Width="100"
Margin="16,0,0,0"
IsEnabled="False"
Style="{DynamicResource ParameterDarkTextBox}"
Text="{Binding SystemCT.CurrentCT.CTData, Mode=OneWay}" />
</Grid>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>