WPF 使用中,通过自定义 Window 样式绑定,实现统一的界面风格,像自定义无边框窗体。如果有这样的场景,用户点击窗体上的x
试图关闭窗体,在某种情况下,如数据未保存,想要弹一个 MessageBox 来提示用户是否确定关闭。这样如何实现呢?
下面是我想的一种实现方式,在窗体 XMAL 代码中定义一个 bool 静态资源,关闭时间的后台代码通过判断它来执行,同时窗体的 behindCode 也可以更改它 :
Style 样式中的 ControlTemplate 的一个 x
关闭按钮用来关闭窗体:
<Button Height="20" Width="20" Content="{StaticResource WindowCloseSymbol}" HorizontalContentAlignment="Center" Margin="2 0 0 0"
Style="{StaticResource ResourceKey=CustomWindowMenuBtn}" Click="CustomWindowBtnClose_Click" />
Window 的这个 Style 样式关闭按钮 Click
绑定了后台事件代码:
// 关闭
private void CustomWindowBtnClose_Click(object sender, RoutedEventArgs e)
{
Window win = (Window)((FrameworkElement)sender).TemplatedParent;
if (win.TryFindResource("CanClose") == null)
{
win.Close();
return;
}
if (!(bool)win.FindResource("CanClose"))
{
string msg = (string)win.TryFindResource("Message");
if (msg == null)
{
return;
}
if (HMessageBoxLib.HMessageBox.Show(msg, "提示", HMessageBoxLib.HMessageBoxButtons.YesNo) != HMessageBoxLib.HMessageboxResult.Yes)
{
return;
}
win.Close();
if (win.Owner != null)
win.Owner.Activate();
return;
}
win.Close();
if (win.Owner != null)
win.Owner.Activate();
}
窗体的 XMAL 静态资源:
<Window.Resources>
<sys:Boolean x:Key="CanClose" >True</sys:Boolean>
<sys:String x:Key="Message" >未保存,是否确定退出?</sys:String>
</Window.Resources>
效果是这样的:
点击右上的 x
关闭,会有弹窗:
在知道资源位置的情况下,窗体后台代码可以直接通过键索引的这样的方式更改资源的值,这样可以在关闭窗口之前,更改 Resources["CanClose"]
根据情况是否要弹窗判断:
Resources["CanClose"] = true;
Resources["Message"] = "确定关闭吗?";
这的CanClose
位true
时,可以直接关闭窗口,不需要弹窗提醒;相反为false
时则不能直接关闭窗体,需要弹窗提醒。