24 lines
1.3 KiB
XML
24 lines
1.3 KiB
XML
<EgtFloating:EgtFloatingPanel x:Class="ShowBeamPanelV"
|
|
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"
|
|
IsTopDockable="True" IsBottomDockable="False" IsLeftDockable="False"
|
|
IsRightDockable="False" Style="{StaticResource ToolBar_EgtFloatingPanel}">
|
|
|
|
<Button Style="{StaticResource ToolBar_Button}"
|
|
Command="{Binding ShowAll_Command}">
|
|
<Image Source="/Resources/ShowBeamPanel/ShowAll.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<ToggleButton Style="{StaticResource ToolBar_ToggleButton}"
|
|
IsChecked="{Binding ShowSolid_IsChecked}"
|
|
IsEnabled="{Binding ShowSolid_IsEnabled}">
|
|
<Image Source="/Resources/ShowBeamPanel/ShowSolid.png" Stretch="Uniform"/>
|
|
</ToggleButton>
|
|
<ToggleButton Style="{StaticResource ToolBar_ToggleButton}"
|
|
IsChecked="{Binding ShowBuilding_IsChecked}"
|
|
IsEnabled="{Binding ShowBuilding_IsEnabled}">
|
|
<Image Source="/Resources/ShowBeamPanel/ShowBuilding.png" Stretch="Uniform"/>
|
|
</ToggleButton>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|