如何在XAML的窗口中居中放置弹出窗口?

时间:2019-05-20 13:06:08

标签: c# wpf xaml popup

我希望在窗口上出现居中的弹出式通知(Height =“ 400” Width =“ 500”)。请参阅下面的xaml代码。是否可以仅使用xaml将其居中(没有后面的代码)?

            

    </Grid>
    <TextBlock Text="TEXT" Grid.Row="1" Grid.Column="0" Grid.RowSpan="2" Grid.ColumnSpan="3" FontSize="200" FontWeight="Bold" HorizontalAlignment="Center"/>
    <Grid Grid.Row="1" Grid.Column="1">

        <Popup x:Name="PopupName" Grid.ColumnSpan="2" IsOpen="{Binding ElementName=ToggleButton,Path=IsChecked}" StaysOpen="False" Placement="Absolute" 
            AllowsTransparency="True"  PopupAnimation="None"   Focusable="False" HorizontalAlignment="Center" VerticalAlignment="Center">
            <Grid Height="400" Width="500">
                <Rectangle Fill="Silver" Opacity="0.5" Panel.ZIndex="1" Height="400" Width="500"/>

                <StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" Panel.ZIndex="2" Height="150" Width="150">
                    <ListBox Height="Auto" HorizontalAlignment="Center" >
                        <Label Content="Red" Background="Red" Margin="5" VerticalAlignment="Top"/>
                        <Label Content="Green" Background="Green" Margin="5" VerticalAlignment="Center"/>
                        <Label Content="Yellow" Background="Yellow" Margin="5" VerticalAlignment="Bottom"/>
                    </ListBox>
                </StackPanel>

                <ToggleButton Panel.ZIndex="2" Background="Coral" Foreground="White" FontWeight="Bold" Name ="Button"  Width="80" Height="30" HorizontalAlignment="Center"  Margin="5,170,5,5" Content="Close" Click="Button_OnClick"/>
            </Grid>
        </Popup>
    </Grid>

另一种选择是在Horizo​​n- / Verticaloffset中使用Placement =“ AbsolutePoint”,但似乎有点怪:D

有什么建议吗?谢谢;)

1 个答案:

答案 0 :(得分:3)

这应将Popup置于父窗口的中央:

<Popup ...
    Placement="Center" 
    PlacementTarget="{Binding RelativeSource={RelativeSource AncestorType=Window}}" />