88502249dd
-aggiunto gestione colore su script
32 lines
1.3 KiB
XML
32 lines
1.3 KiB
XML
<Grid x:Class="TopPanelInfoParametricV"
|
|
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 TopPanelWnd_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>
|
|
</ItemsControl.Resources>
|
|
</ItemsControl>
|
|
</Grid>
|