f17c7967c5
- prime modifiche per gestione grezzo.
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<EgtFloating:EgtFloatingPanel x:Class="DrawPanelV"
|
|
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" IsFloating="False"
|
|
Background="{StaticResource Omag_Gray}" BorderBrush="{StaticResource Omag_Gray}">
|
|
|
|
<Button ToolTip="{Binding DrawToolTip}"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
Command="{Binding DrawCommand}">
|
|
<Image Source="/Resources/DrawPanel/Draw.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding ImportDxfToolTip}"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
Command="{Binding ImportDxfCommand}">
|
|
<Image Source="/Resources/DrawPanel/ImportDxf.png" Stretch="Uniform"/>
|
|
</Button>
|
|
<Button ToolTip="{Binding CsvToolTip}"
|
|
Style="{StaticResource ToolBar_Button}"
|
|
Command="{Binding CsvCommand}">
|
|
<Image Source="/Resources/DrawPanel/ImportCsv.png" Stretch="Uniform"/>
|
|
</Button>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|