88502249dd
-aggiunto gestione colore su script
44 lines
1.9 KiB
XML
44 lines
1.9 KiB
XML
<Grid x:Class="TopPanelListButton_1V"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtStone3D="clr-namespace:EgtStone3D">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<ItemsControl ItemsSource="{Binding TopPanelListBtn}"
|
|
Style="{DynamicResource TopList_ItemsControl}">
|
|
<ItemsControl.ItemsPanel>
|
|
<ItemsPanelTemplate>
|
|
<WrapPanel Style="{StaticResource TopPanel_WrapPanel}"/>
|
|
</ItemsPanelTemplate>
|
|
</ItemsControl.ItemsPanel>
|
|
<ItemsControl.Resources>
|
|
<DataTemplate DataType="{x:Type EgtStone3D:_Button}">
|
|
<Button ToolTip="{Binding Name}"
|
|
IsEnabled="{Binding IsEnabled}"
|
|
Command="{Binding CmdBtn}"
|
|
Style="{StaticResource SceneButton2}">
|
|
<StackPanel Style="{StaticResource TopPanel_StackPanel}">
|
|
<EgtStone3D:SVGV FileSource="{Binding Img}" Height="50"/>
|
|
<TextBlock Text="{Binding Name}"
|
|
Style="{StaticResource TopPanel_TxBl}"/>
|
|
</StackPanel>
|
|
</Button>
|
|
</DataTemplate>
|
|
<DataTemplate DataType="{x:Type EgtStone3D:_ToggleButton}">
|
|
<ToggleButton ToolTip="{Binding Name}"
|
|
Command="{Binding CmdBtn}"
|
|
IsChecked="{Binding IsChecked}"
|
|
Style="{StaticResource SceneToggleButton2}">
|
|
<StackPanel Style="{StaticResource TopPanel_StackPanel}">
|
|
<EgtStone3D:SVGV FileSource="{Binding Img}" Height="50"/>
|
|
<TextBlock Text="{Binding Name}"
|
|
Style="{StaticResource TopPanel_TxBl}"/>
|
|
</StackPanel>
|
|
</ToggleButton>
|
|
</DataTemplate>
|
|
</ItemsControl.Resources>
|
|
</ItemsControl>
|
|
</Grid>
|