コマンドにバインドして、ビューモデルの右上隅にあるウィンドウの閉じるボタン、つまり「X」を処理する方法はありますか? または、window.close コマンドをオーバーライドして、1 つのウィンドウを閉じると前のウィンドウに戻るようにします。ありがとう。
質問する
20828 次
2 に答える
35
これにはいくつかの方法があります。以下に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>
注: System.Windows.Interactivity 参照を追加します。
モデルを見る
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;
}
于 2013-03-04T12:37:47.143 に答える
1
問題は、親ウィンドウを閉じて、それぞれの子ウィンドウを閉じた後に再度開くと、メモリリークが発生することでした。親ウィンドウを非表示にし、子ウィンドウを閉じた後に再度表示することで解決しました。私はwpfとWindowsの開発に慣れていないので、進むにつれて学びます。
于 2013-03-05T09:18:33.247 に答える