Files
egtstone3d/TopPanel/TopPanelViewV.xaml
T
Demetrio Cassarino 1ee8a8f0e0 -aggiunto egtmsg
-aggiunto svg
2025-01-22 17:01:16 +01:00

25 lines
1001 B
XML

<Grid x:Class="TopPanelViewV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:EgtStone3D="clr-namespace:EgtStone3D">
<Button Name="View"
Command="{Binding ShowPopUpCommand}"
Style="{StaticResource TopPanel_Btn}">
<StackPanel Style="{StaticResource TopPanel_StackPanel}">
<Image Source="/Resources/TopPanel/vista.png"
Style="{StaticResource TopPanel_Image}"/>
<TextBlock Text="{Binding View_Msg}"
Style="{StaticResource TopPanel_TxBl}"/>
</StackPanel>
</Button>
<Popup IsOpen="{Binding IsOpen}"
AllowsTransparency="True"
PopupAnimation="Scroll"
PlacementTarget="{Binding ElementName=View}">
<Border Style="{StaticResource View_Border}">
<EgtStone3D:ViewPanelV DataContext="{StaticResource ViewPanelVM}"/>
</Border>
</Popup>
</Grid>