08ea864a5e
- sistemato grafica pulsanti special - sistemato sfondo pulsanti popup
29 lines
1.3 KiB
XML
29 lines
1.3 KiB
XML
<EgtFloating:EgtFloatingPanel x:Class="ReversePostPanelV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:EgtCAM5"
|
|
xmlns:EgtFloating="clr-namespace:EgtWPFLib5.EgtFloating;assembly=EgtWPFLib5"
|
|
Visibility="{Binding ReversePostPanel_Visibility}">
|
|
|
|
<ItemsControl ItemsSource="{Binding ButtonList}">
|
|
<ItemsControl.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<StackPanel Orientation="Horizontal"/>
|
|
</ItemsPanelTemplate>
|
|
</ItemsControl.ItemsPanel>
|
|
<ItemsControl.Resources>
|
|
<DataTemplate DataType="{x:Type local:ButtonItem}">
|
|
<Button ToolTip="{Binding ToolTip}" Command="{Binding LuaExecCommand}" Style="{StaticResource DrawPanelButton}">
|
|
<Image Source="{Binding ImagePath}"/>
|
|
</Button>
|
|
</DataTemplate>
|
|
<DataTemplate DataType="{x:Type local:SeparatorItem}">
|
|
<Border Style="{StaticResource Trimming_Border}">
|
|
<Border Style="{StaticResource Separator_Border}"/>
|
|
</Border>
|
|
</DataTemplate>
|
|
</ItemsControl.Resources>
|
|
</ItemsControl>
|
|
|
|
</EgtFloating:EgtFloatingPanel>
|