我希望程序在用户拿着控件(在移动设备上)或用户右键单击控件(在PC上)时显示附加的Flyout。
这是我的XAML:
<DataTemplate x:DataType="data:Cards" x:Key="card">
<StackPanel x:Name="cardstack" Holding="cardstack_Holding" KeyDown="cardstack_KeyDown" >
<StackPanel Background="Blue" Height="100" />
<FlyoutBase.AttachedFlyout>
<MenuFlyout x:Name="optionpass">
<MenuFlyoutItem x:Name="delete" Text="Delete" Click="delete_Click"/>
</MenuFlyout>
</FlyoutBase.AttachedFlyout>
</StackPanel>
</DataTemplate>
这是我的C#:
private void cardstack_Holding(object sender, HoldingRoutedEventArgs e)
{
FlyoutBase.ShowAttachedFlyout(sender as FrameworkElement);
}
private void cardstack_KeyDown(object sender, KeyRoutedEventArgs e)
{
if (e.Key == Windows.System.VirtualKey.RightButton)
{
FlyoutBase.ShowAttachedFlyout(sender as FrameworkElement);
}
}
当我在移动模拟器上点击并按住Stackpanel时,Hold事件可以正常工作,但当我右键单击我的电脑时,它会崩溃!它说“没有附加的弹出窗口!”。我不知道出了什么问题。
“您是否尝试过RightTapped事件?它有效吗?”
是和否:(
答案 0 :(得分:3)
我刚刚找到了解决问题的解决方案。
事实证明,您必须将MenuFlyout
命名为x:Name = "option_menu"
,而Flyoutbase.AttachedFlyout
不能在DataTemplate
中,这意味着您必须将其放在其他地方除了DataTemplate
之外,.cs文件可以找到MenuFlyout
的名称。
这是我的C#:
public void cardstack_Holding(object sender, HoldingRoutedEventArgs e)
{
option_menu.ShowAt(sender as FrameworkElement);
e.Handled = true;
}
private void cardstack_PointerPressed(object sender, PointerRoutedEventArgs e)
{
Pointer pointr = e.Pointer;
if (pointr.PointerDeviceType == Windows.Devices.Input.PointerDeviceType.Mouse)
{
Windows.UI.Input.PointerPoint pointrd = e.GetCurrentPoint(sender as UIElement);
if (pointrd.Properties.IsRightButtonPressed)
{
option_menu.ShowAt(sender as FrameworkElement);
}
}
e.Handled = true;
}
请注意,在此之前我使用ShowAttachedFlyout
,现在我使用option_menu.ShowAt
。
KeyDown
事件以某种方式无法使用我的应用,因此我使用PointerPressed
代替。
希望这会有所帮助。 (0w0)/