a4b5cd4834
- Cambiati nomi classi e file.
17 lines
679 B
XML
17 lines
679 B
XML
<UserControl x:Class="InfoExpanderView"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:EgtCAM5.EgtCAM5">
|
|
|
|
<Expander IsExpanded="{Binding IsEnabled}" IsEnabled="{Binding IsEnabled}"
|
|
Style="{StaticResource ExpanderStyle}">
|
|
<Expander.Header>
|
|
<TextBlock Text="{Binding PropertiesMsg}"/>
|
|
</Expander.Header>
|
|
<UniformGrid>
|
|
<TextBox Text="{Binding InfoBox}" MaxHeight="100" IsReadOnly="True" HorizontalScrollBarVisibility="Auto"/>
|
|
</UniformGrid>
|
|
</Expander>
|
|
|
|
</UserControl>
|