Files
EgtCAM5/ProjectPage/InstrumentPanel/InstrumentPanelView.xaml
T
Emmanuele Sassi 3a5aeedd81 EgtCAM5 :
- Separazione GridView in più pannelli.
- Cambio colori della grafica.
2016-08-30 13:47:59 +00:00

15 lines
788 B
XML

<UserControl x:Class="InstrumentPanelView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<StackPanel Background="Transparent" Orientation="Horizontal">
<ToggleButton ToolTip="{Binding AnalyzeToolTip}" Style="{StaticResource GridViewPanelToggleButton}" IsChecked="{Binding AnalyzeIsChecked}">
<Image Source="/Resources/GridViewPanel/Analyze.png" Stretch="Uniform"/>
</ToggleButton>
<ToggleButton ToolTip="{Binding GetDistToolTip}" Style="{StaticResource GridViewPanelToggleButton}" IsChecked="{Binding GetDistIsChecked}">
<Image Source="/Resources/GridViewPanel/GetDist.png" Stretch="Uniform"/>
</ToggleButton>
</StackPanel>
</UserControl>