如何像这样做一个像叠加窗口这样的IPad 在WPF中使用XAML
我想到了一个切换按钮或一个扩展器控件。 如果面板是可缩放的,那就太好了。 对于与按钮本身大小不同的中心叠加层,我遇到了最大麻烦。
任何帮助,链接或资源都会很棒。
答案 0 :(得分: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;
}
}