WPF模板如何才能控制应用模板的控件?
我在App.xaml里写了一个Window模板,模板里有一个关闭按钮,当窗体使用这个模板时,点击关闭按钮就能将使用模板的窗体关闭如何实现?用路由事件?...
我在App.xaml里写了一个Window模板,模板里有一个关闭按钮,当窗体使用这个模板时,点击关闭按钮就能将使用模板的窗体关闭如何实现?用路由事件?
展开
2个回答
展开全部
Application.Current.Shutdown(); 关闭当前 程序的!~
或是写一个 Command 绑定到按钮上!
public class ExitCommand : ICommand
{
public event EventHandler CanExecuteChanged;
public bool CanExecute(object parameter)
{
return true;
}
public void Execute(object parameter)
{
Application.Current.Shutdown();
}
}
或是写一个 Command 绑定到按钮上!
public class ExitCommand : ICommand
{
public event EventHandler CanExecuteChanged;
public bool CanExecute(object parameter)
{
return true;
}
public void Execute(object parameter)
{
Application.Current.Shutdown();
}
}
来自:求助得到的回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询