如何禁用关闭按钮WPF?我不想隐藏,我只想禁用窗口的关闭按钮
是否有任何逻辑禁用关闭按钮?
答案 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;
}