WinRT打开弹出窗口上方的应用程序栏按钮调用它

时间:2013-03-28 19:10:52

标签: popup position winrt-xaml css-position

如何将Popup控件放在调用它的BottomAppBar Button之上?

2 个答案:

答案 0 :(得分:1)

您需要将其置于BottomAppBar的引用中。

popup.VerticalOffset = Window.Current.Bounds.Height - offset;

offset是屏幕底部的距离

您可以对HorizontalOffset执行相同操作,其中HorizontalOffset将是您想要弹出窗口的按钮的位置。

答案 1 :(得分:1)

使用Callisto的Flyout,它简单而有效click here