3

我有一个 WPF 应用程序,我想在其中创建一个具有模式行为的自定义弹出窗口。我已经能够使用与“DoEvents”等效的解决方案来破解解决方案,但是有没有更好的方法来做到这一点?这是我目前拥有的:

    private void ShowModalHost(FrameworkElement element)
    {
        //Create new modal host
        var host = new ModalHost(element);

        //Lock out UI with blur
        WindowSurface.Effect = new BlurEffect();
        ModalSurface.IsHitTestVisible = true;

        //Display control in modal surface
        ModalSurface.Children.Add(host);

        //Block until ModalHost is done
        while (ModalSurface.IsHitTestVisible)
        {
            DoEvents();
        }
    }

    private void DoEvents()
    {
        var frame = new DispatcherFrame();
        Dispatcher.BeginInvoke(DispatcherPriority.Background,
            new DispatcherOperationCallback(ExitFrame), frame);
        Dispatcher.PushFrame(frame);            
    }

    private object ExitFrame(object f)
    {
        ((DispatcherFrame)f).Continue = false;

        return null;
    }

    public void CloseModal()
    {
        //Remove any controls from the modal surface and make UI available again
        ModalSurface.Children.Clear();
        ModalSurface.IsHitTestVisible = false;
        WindowSurface.Effect = null;
    }

我的 ModalHost 是一个用户控件,旨在承载具有动画和其他支持的另一个元素。

4

1 回答 1

2

我建议重新考虑这个设计。

在某些情况下,使用“DoEvents”可能会导致一些非常奇怪的行为,因为您允许代码运行,同时试图阻止它。

您可以考虑将 Window 与ShowDialog一起使用,而不是使用 Popup,并适当地设置它的样式。这将是实现模态行为的“标准”方式,而 WPF 让您可以轻松地为窗口设置样式,使其看起来与弹出窗口完全一样......

于 2010-03-27T18:44:09.503 回答