0

全屏我的意思是弹出用户控件覆盖整个手机屏幕,最大化。可以这样做吗?

谢谢!

4

2 回答 2

5

您可以通过 Content.ActualHeight/Width 属性获取当前的宽度和高度,这是一个代码片段

    public void showPopUp()
    {
        //get heigth and width
        double height=Application.Current.Host.Content.ActualHeight;
        double width = Application.Current.Host.Content.ActualWidth;


      //child content
       StackPanel stk = new StackPanel();
       stk.Height = height; //set height
       stk.Width = width; //set width
       stk.Background = new SolidColorBrush(Colors.Red);
       TextBlock txtblock = new TextBlock() { FontSize=40, Text="HELLO WORLD", TextWrapping=TextWrapping.Wrap};
       stk.Children.Add(txtblock);


        Popup _popup = new Popup();

        _popup.Child = stk; //set child content

        this.LayoutRoot.Children.Add(_popup);
        _popup.IsOpen = true;

    }

然后你得到这个结果;) 在此处输入图像描述

于 2013-10-04T16:47:10.560 回答
1

对于 Windows Phone 8.1,您可以通过 Window.Current.Bounds 获取当前应用程序的宽度和高度

double height = Window.Current.Bounds.Height;
double width = Window.Current.Bounds.Width;
于 2015-06-12T09:02:59.273 回答