码迷,mamicode.com
首页 > Windows程序 > 详细

WPF Popup全屏 弹出方法。解决只显示75%的问题。

时间:2015-04-15 00:48:53      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:

WPF 中 Popup 有一个特点。当Popup的高度超过屏幕的75%的时候,只显示75%的高度。

如下代码:

技术分享
<Window x:Class="WpfApplication13.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525"
         WindowState="Maximized" WindowStyle="None" >
    <Grid>
        <Button Content="Open" Click="OnClick" Width="100" Height="25" VerticalAlignment="Bottom" />
        <Popup x:Name="_popup" Placement="Absolute" Width="1920" Height="1080" >
            <Grid>
                <Rectangle></Rectangle>
                <TextBlock x:Name="_txt" Text="TestFullPopup" />
            </Grid>
        </Popup>
    </Grid>
</Window>
技术分享
技术分享
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void OnClick(object sender, RoutedEventArgs e)
        {
            _popup.IsOpen = !_popup.IsOpen;
        }
    }
技术分享

 

显示效果:

技术分享

仔细看,下边是有个控钮的啊,大概只有75%的样式(我事先就知道了!嘿嘿!)。我们再看一下Snoop上的值。

技术分享

真的只有75%, 1080 * 0.75 = 810。

大家可以试各种情况。高度超过75%,看看高度是不是只有75%。

我还试过,不从0,0 位置弹出 Popup,往下偏移一段距离。依然不可以。(试出来可以的,告诉我一下)

而且在CS中设置 Popup的大小也是无效的,我还试过开子线程,延迟一段时间再设置 Popup的高度也是无效的。

 

再看一下Snoop,我们既然能看到 PopupRoot的可视高度,那是不是可以修改,PopupRoot 的高度来显示。修改 Height为1080,成功可以全屏。

于是只要设置 PopupRoot.Height 属性就可以了!

首先想到就是用 VisualTreeHelper.GetChild(); 获取Popup的中的PopupRoot.

出现两个问题:1.使用VisualTreeHelper.GetChild(Popup),跟本拿不到 Popup的子控件。

       2.PopupRoot 可能是一个内部的类型。反正我是没找到!找到的同学请告诉我一下。

只好使用  VisualTreeHelper.GetParent(),由于没找到 PopupRoot 类,只好先使用字串的判断方法。"System.Windows.Controls.Primitives.PopupRoot",直接上代码:

技术分享
   /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void OnClick(object sender, RoutedEventArgs e)
        {
            _popup.IsOpen = !_popup.IsOpen;

            DependencyObject parent = _popup.Child;


            do
            {
                parent = VisualTreeHelper.GetParent(parent);

                if (parent != null && parent.ToString() == "System.Windows.Controls.Primitives.PopupRoot")
                {
                    var element = parent as FrameworkElement;

                    var mainWin = Application.Current.MainWindow;

                    element.Height = mainWin.Height;
                    element.Width = mainWin.Width;

                    break;
                }
            }
            while (parent != null);
        }
    }
技术分享

 

最终效果:

技术分享

收工,睡觉。

可能没人会转,但转的一定要注明出处:http://www.cnblogs.com/gaoshang212/p/3157769.html

WPF Popup全屏 弹出方法。解决只显示75%的问题。

标签:

原文地址:http://www.cnblogs.com/qq247039968/p/4427284.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!