gpt4 book ai didi

wpf - 在wpf MVVM中处理窗口关闭按钮

转载 作者:行者123 更新时间:2023-12-03 01:47:09 25 4
gpt4 key购买 nike

有没有办法通过绑定(bind)到命令来处理窗口关闭按钮,即 View 模型右上角的“X”?或覆盖 window.close 命令,以便关闭一个窗口后返回到上一个窗口。谢谢。

最佳答案

有几种方法可以实现这一点。我在下面指出了两种方法。

  1. 您可以使用附加命令在 View 模型中绑定(bind)关闭按钮。

  2. 您可以使用下面的代码

Xaml:

<Window x:Class="WpfInfragisticsModal.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525"
xmlns:ig="http://schemas.infragistics.com/xaml"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
Name="myWindow">
<i:Interaction.Triggers>
<i:EventTrigger EventName="Closing">
<i:InvokeCommandAction Command="{Binding CloseWindowCommand}" />
</i:EventTrigger>
</i:Interaction.Triggers>
<Grid>
</Grid>
</Window>

NOTE: Add System.Windows.Interactivity reference

查看模型

private ICommand closeWindowCommand;

public ICommand CloseWindowCommand
{
get
{
if (closeWindowCommand == null)
{
closeWindowCommand = new RelayCommand(param => this.CloseWindow(), null);
}
return closeWindowCommand;
}
}

private void CloseWindow()
{
//Do your operations
}

这是我的 RelayCommand 类。

public class RelayCommand : ICommand
{
/// <summary>
/// Initializes a new instance of the <see cref="RelayCommand"/> class.
/// </summary>
/// <param name="execute">The execute.</param>
public RelayCommand(Action<object> execute)
: this(execute, null)
{
}

/// <summary>
/// Initializes a new instance of the <see cref="RelayCommand"/> class.
/// </summary>
/// <param name="execute">The execute.</param>
/// <param name="canExecute">The can execute.</param>
public RelayCommand(Action<object> execute, Predicate<object> canExecute)
{
if (execute == null)
throw new ArgumentNullException("execute");
_execute = execute;
_canExecute = canExecute;
}

/// <summary>
/// Defines the method that determines whether the command can execute in its current state.
/// </summary>
/// <param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to null.</param>
/// <returns>
/// true if this command can be executed; otherwise, false.
/// </returns>
public bool CanExecute(object parameter)
{
return _canExecute == null ? true : _canExecute(parameter);
}

/// <summary>
/// Occurs when changes occur that affect whether or not the command should execute.
/// </summary>
public event EventHandler CanExecuteChanged
{
add { CommandManager.RequerySuggested += value; }
remove { CommandManager.RequerySuggested -= value; }
}

/// <summary>
/// Defines the method to be called when the command is invoked.
/// </summary>
/// <param name="parameter">Data used by the command. If the command does not require data to be passed, this object can be set to null.</param>
public void Execute(object parameter)
{
_execute(parameter);
}

/// <summary>
/// Action
/// </summary>
private readonly Action<object> _execute;


/// <summary>
/// Predicate
/// </summary>
private readonly Predicate<object> _canExecute;
}

关于wpf - 在wpf MVVM中处理窗口关闭按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15201122/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com