30 lines
1.7 KiB
XML
30 lines
1.7 KiB
XML
<EgtFloating:EgtFloatingPanel x:Class="OnlyProdShowBeamPanelV"
|
|
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_OnlyProd}">
|
|
|
|
<Button Command="{Binding ShowAll_Command}"
|
|
IsEnabled="{Binding ShowAll_IsEnabled}"
|
|
ToolTip="{Binding ShowAll_ToolTip}"
|
|
Visibility="{Binding ShowAll_Visibility}"
|
|
Style="{StaticResource ToolBarViewPanel_Button}">
|
|
<Image Source="/Resources/ShowBeamPanel/ShowAll.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<ToggleButton IsChecked="{Binding ShowSolid_IsChecked}"
|
|
IsEnabled="{Binding ShowSolid_IsEnabled}"
|
|
ToolTip="{Binding ShowSolid_ToolTip}"
|
|
Style="{StaticResource ToolBarOnlyProdPage_ToggleButton}">
|
|
<Image Source="/Resources/ShowBeamPanel/ShowSolid.png" Stretch="Uniform"/>
|
|
</ToggleButton>
|
|
<ToggleButton IsChecked="{Binding ShowBuilding_IsChecked}"
|
|
IsEnabled="{Binding ShowBuilding_IsEnabled}"
|
|
ToolTip="{Binding ShowBuilding_ToolTip}"
|
|
Style="{StaticResource ToolBarOnlyProdPage_ToggleButton}">
|
|
<Image Source="/Resources/ShowBeamPanel/ShowBuilding.png" Stretch="Uniform"/>
|
|
</ToggleButton>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|