a4b32b186f
-piccoli aggiustamenti
26 lines
1015 B
XML
26 lines
1015 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 TopPanelList_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"
|
|
StaysOpen="False"
|
|
PlacementTarget="{Binding ElementName=View}">
|
|
<Border Style="{StaticResource View_Border}">
|
|
<EgtStone3D:ViewPanelV DataContext="{StaticResource ViewPanelVM}"/>
|
|
</Border>
|
|
</Popup>
|
|
</Grid>
|