2

我在弹出窗口中使用列表选择器。但是当我点击列表选择器时,它的完整模式会在弹出窗口后面打开。如何使我的列表选择器完整模式窗口出现在弹出窗口上方。我的列表选择器位于名为 WindowsPhoneControl1 的用户控件中

Popup Mypopup = new Popup();

            Mypopup.Height = 300;

            Mypopup.Width = 400;

            Mypopup.VerticalOffset = 100;

            WindowsPhoneControl1 Mycontrol = new WindowsPhoneControl1();

            Mypopup.Child = Mycontrol;

            Mypopup.IsOpen = true;

我没有找到解决办法谢谢

4

1 回答 1

0

尝试Popup在 XAML 中定义。

比如:

<Popup IsOpen="true" Name="MyPopup" Height="300" Width="400" VerticleOffset="100"/>

确保 IsOpen 为真,然后尝试右键单击ListPicker并选择它的顺序:前置。

我知道这很简单,但我没有看到你提到尝试它,所以试一试吧!

于 2013-08-20T12:05:25.257 回答