主窗口在wpf

时间:2018-04-26 08:59:39

标签: c# wpf menu contextmenu popupwindow

当我的弹出窗口打开时,On Minimizing the mainwindow,Popup窗口不会调整大小并显示在MainWindow之外。(见下图)Popup appears outside window while minimizing

有没有办法 - 我们可以在最小化期间​​调整弹出窗口的大小并在MainWindow中对齐它?这是我的代码:

MainWindow.xaml

<Button Height="54" Width="50" Margin="100,0,0,0" x:Name="btnNotification"  FontFamily="Segoe UI Symbol" FontSize="20" Content="&#x1f514;" Command="{Binding LoadNotification}" Click="btnNotification_Click"/>

<Popup Name="NotificationPopup" IsOpen="False" Closed="PopupClosed" StaysOpen="False" PlacementTarget="{Binding ElementName=btnNotification}" Placement="Bottom" VerticalOffset="20">
     <Grid x:Name="PopUpGrid" Height="560" Width="360" Background="White">
         <StackPanel Orientation="Vertical" HorizontalAlignment="Right">
             <Button  BorderBrush="Transparent" BorderThickness="0" Background="White" >
                 <StackPanel Width="{Binding ActualWidth, ElementName=PopUpGrid}" Orientation="Vertical">
                 <WrapPanel>
                 <Rectangle Width="20"/>
                 <TextBlock  Text="Notifications" Width="300" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="24" FontWeight="Light" />
                 <Button Click="btnNotification_Click" >
                 <StackPanel>
                 <TextBlock Text="&#x2715;" Foreground="Black" FontWeight="ExtraLight"/>
                 </StackPanel>
                 </Button>
                 </WrapPanel>
                 <Grid>
                 <!--Datagrid-->
                 </Grid>
            </StackPanel>
            </Button>
        </StackPanel>
    </Grid>
</Popup>

MainWindow.xaml.cs

public void PopupClosed(object sender, EventArgs e)
{
    NotificationPopup.IsOpen = false;            
}

0 个答案:

没有答案