Files
egtstone3d/TopPanel/TopPanelViewProspectiveV.xaml
T
Demetrio Cassarino a3acf8aeca -sistemato svg
2025-01-23 09:55:32 +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"
x:Name="TopPanelViewProspective">
<Button Name="ViewProspective"
Command="{Binding ShowPopUpProspectiveCommand}"
Style="{DynamicResource TopPanelProspective_Btn}">
<StackPanel Style="{StaticResource TopPanel_StackPanel}">
<EgtStone3D:SVGV Height="50" FileSource="{Binding FileSourceSVG, Mode=OneWay, UpdateSourceTrigger=PropertyChanged}"/>
<TextBlock Text="{Binding ProspectiveView_Msg}"
Style="{StaticResource TopPanel_TxBl}"/>
</StackPanel>
</Button>
<Popup IsOpen="{Binding IsOpenProspective}"
AllowsTransparency="True"
PopupAnimation="Scroll"
PlacementTarget="{Binding ElementName=ViewProspective}">
<Border Style="{StaticResource View_Border}">
<EgtStone3D:ViewPanelProspectiveV DataContext="{StaticResource ViewPanelProspectiveVM}"/>
</Border>
</Popup>
</Grid>