15 lines
627 B
XML
15 lines
627 B
XML
<UserControl x:Class="InfoExpanderV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
|
|
<Expander IsExpanded="{Binding IsEnabled}" IsEnabled="{Binding IsEnabled}"
|
|
Style="{StaticResource ExpanderStyle}">
|
|
<Expander.Header>
|
|
<TextBlock Text="{Binding PropertiesMsg}"/>
|
|
</Expander.Header>
|
|
<TextBox Text="{Binding InfoBox, Mode=OneWay}" IsReadOnly="True"
|
|
HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto"/>
|
|
</Expander>
|
|
|
|
</UserControl>
|