13b2dd29d1
- aggiunto progetto Optimizer
39 lines
1.9 KiB
XML
39 lines
1.9 KiB
XML
<EgtFloating:EgtFloatingPanel x:Class="InstrumentPanelV"
|
|
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}">
|
|
|
|
<ToggleButton ToolTip="{Binding GetDistToolTip}"
|
|
Style="{StaticResource ToolBar_ToggleButton}"
|
|
IsChecked="{Binding GetDistIsChecked}">
|
|
<Image Source="/Resources/InstrumentPanel/GetDist.png" Stretch="Uniform"/>
|
|
</ToggleButton>
|
|
|
|
<Button ToolTip="{Binding ChangeParam_ToolTip}"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
Command="{Binding ChangeParameter_Command}"
|
|
Visibility="{Binding ChangeParam_Visibility}"
|
|
IsEnabled="{Binding InstrumentPanel_IsEnabled}">
|
|
<Image Source="/Resources/InstrumentPanel/ChangeParam.png" Stretch="Uniform"/>
|
|
</Button>
|
|
|
|
<Button ToolTip="{Binding ChangeMaterial_ToolTip}"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
Command="{Binding ChangeMaterial_Command}"
|
|
Visibility="{Binding ChangeMaterial_Visibility}"
|
|
IsEnabled="{Binding InstrumentPanel_IsEnabled}"
|
|
Content="MAT">
|
|
</Button>
|
|
|
|
<ToggleButton ToolTip="{Binding Statistics_Msg}"
|
|
Style="{StaticResource ToolBar_ToggleButton}"
|
|
Visibility="{Binding Statistic_Visibility}"
|
|
IsChecked="{Binding Statistics_IsChecked}"
|
|
IsEnabled="{Binding Statistics_IsEnabled}">
|
|
<Image Source="/Resources/InstrumentPanel/Statistics.png" Stretch="Uniform"/>
|
|
</ToggleButton>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|