首页 > 代码库 > Window的匿名Closing 事件

Window的匿名Closing 事件

group.Closing += (sender, e) =>
{
try
{
   Code here

}
}
catch (Exception ex)
{
 Exception here
}
};