c37d2269b6
- Cambio stile expander. - Migliorie varie.
14 lines
557 B
XML
14 lines
557 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 Header="Properties" IsExpanded="{Binding IsEnabled}" IsEnabled="{Binding IsEnabled}"
|
|
Style="{StaticResource ExpanderStyle}">
|
|
<UniformGrid>
|
|
<TextBox Text="{Binding InfoBox}" MaxHeight="100" IsReadOnly="True"/>
|
|
</UniformGrid>
|
|
</Expander>
|
|
|
|
</UserControl>
|