Files
egtstone3d/TopPanel/TopPanelViewProspectiveV.xaml
Demetrio Cassarino fdf49c18db -aggiunto short cut
-piccole modifiche a salvataggio e apertura
-aggiunto immagini messagebox
2025-01-29 16:51:59 +01:00

25 lines
1.1 KiB
XML

<Grid x:Class="TopPanelViewProspectiveV"
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="ViewProspective"
Command="{Binding ShowPopUpProspectiveCommand}"
Style="{DynamicResource TopPanelProspective_Btn}">
<StackPanel Style="{StaticResource TopPanel_StackPanel}">
<EgtStone3D:SVGV Height="50" FileSource="{Binding FileSourceSVG, UpdateSourceTrigger=PropertyChanged}"/>
<TextBlock Text="{Binding ProspectiveView_Msg}"
Style="{StaticResource TopPanel_TxBl}"/>
</StackPanel>
</Button>
<Popup IsOpen="{Binding IsOpenProspective}"
AllowsTransparency="True"
PopupAnimation="Scroll"
StaysOpen="False"
PlacementTarget="{Binding ElementName=ViewProspective}">
<Border Style="{StaticResource View_Border}">
<EgtStone3D:ViewPanelProspectiveV DataContext="{StaticResource ViewPanelProspectiveVM}"/>
</Border>
</Popup>
</Grid>