f68dd5c81a
- primo rilascio.
21 lines
979 B
XML
21 lines
979 B
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>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|