15 lines
622 B
XML
15 lines
622 B
XML
<StackPanel x:Class="ProjManagerV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtFloating="clr-namespace:EgtWPFLib5.EgtFloating;assembly=EgtWPFLib5"
|
|
Orientation="Horizontal">
|
|
|
|
<RadioButton Content="HOME"
|
|
Command="{Binding HomeCmd}"
|
|
Style="{StaticResource Home_ToggleButton}"/>
|
|
<RadioButton Content="PARAMETRICO"
|
|
Command="{Binding ParametricoCmd}"
|
|
Style="{StaticResource Parametrico_ToggleButton}"/>
|
|
|
|
</StackPanel>
|