4

如何在 WPF 中使用 XAML 制作类似 iPad 的覆盖窗口 在此处输入图像描述

我想到了一个切换按钮或扩展器控件。如果面板是可扩展的,那就太好了。我最麻烦的是中心覆盖层的大小与按钮本身不同。

任何帮助、链接或资源都会很棒。

4

1 回答 1

3

dowhilefor 是正确的,Popup 类是要走的路——我使用带有自定义控件的 Popup 作为子项制作了一个小示例项目。重要的是 Popup 的 PlacementTarget 和 Placement 字段,因为它们允许您设置弹出窗口出现的位置。希望这可以帮助!

弹出示例

自定义控件:

<UserControl x:Class="SilverfighterTest.PopupControl"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         mc:Ignorable="d" 
         d:DesignHeight="300" d:DesignWidth="300">
<UserControl.Resources>
    <Style TargetType="Button">
        <Setter Property="Margin" Value="4"/>
        <Setter Property="Padding" Value="7"/>
    </Style>
</UserControl.Resources>
<Grid Background="Gray">
    <StackPanel>
        <Button>Clone</Button>
        <Button>Log Call</Button>
        <Button> Visit Report</Button>
        <Button> Delete</Button>
        <Button>Cancel</Button>
    </StackPanel>

</Grid>
</UserControl>

弹出窗口:

<Window x:Class="SilverfighterTest.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:SilverfighterTest"
    Title="MainWindow" Height="350" Width="525">
<Grid>
    <Rectangle VerticalAlignment="Top" Name="rect" MouseLeftButtonDown="rect_MouseLeftButtonDown" HorizontalAlignment="Right" Height="50" Width="50" Fill="Red">

    </Rectangle>

    <Popup PopupAnimation="Slide" Placement="Bottom" PlacementTarget="{Binding ElementName=rect}"  Name="thePopup" >
        <local:PopupControl/>
    </Popup>
</Grid>

窗口后面的代码:

public partial class MainWindow : Window
{
    public MainWindow()
    {
        InitializeComponent();

    }

    private void rect_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
    {
        thePopup.IsOpen = !thePopup.IsOpen;
    }
}
于 2012-05-05T15:41:35.867 回答