如何禁用关闭按钮WPF?

时间:2017-02-21 09:35:14

标签: wpf xaml

如何禁用关闭按钮WPF?我不想隐藏,我只想禁用窗口的关闭按钮

是否有任何逻辑禁用关闭按钮?

1 个答案:

答案 0 :(得分:1)

您可以对事件进行编码,并在关闭按钮时停止。 可能我速度英语不好,但你看到代码没问题。

    in wpf this event called Closing :
    public Window4()
    {
        InitializeComponent();
        this.Closing += new System.ComponentModel.CancelEventHandler(Window4_Closing);
    }
    void Window4_Closing(object sender, System.ComponentModel.CancelEventArgs e)
    {
        e.Cancel = true;
    }