fdf49c18db
-piccole modifiche a salvataggio e apertura -aggiunto immagini messagebox
25 lines
1.1 KiB
XML
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>
|