应用程序运行后运行命令

本文关键字:运行 命令 应用程序 | 更新日期: 2023-09-27 18:35:29

我注意到它不仅发生在一个项目中,而且发生在多个项目中,所以我将提供简单的例子。我有这样的 xaml:

<Page
x:Class="TestApp.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:TestApp"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid>
    <Button Content="Button" Command="{Binding PressedButton}" HorizontalAlignment="Left" Margin="0,-10,0,-9" VerticalAlignment="Top" Height="659" Width="400"/>
</Grid>
</Page>

我的类绑定数据:

public abstract class ObservableObject : INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;
    protected virtual void OnPropertyChanged(string propertyName)
    {
        if (this.PropertyChanged != null)
        {
            var e = new PropertyChangedEventArgs(propertyName);
            this.PropertyChanged(this, e);
        }
    }
}
public class Command : ICommand
{
    private Action<object> action;
    public Command(Action<object> action)
    {
        this.action = action;
    }
    public bool CanExecute(object parameter)
    {
        if (action != null)
        {
            return true;
        }
        else
        {
            return false;
        }
    }
    public event EventHandler CanExecuteChanged;
    public void Execute(object parameter)
    {
        if (action != null)
        {
            action((string)parameter);
        }
    }
}
public class TestViewModel : ObservableObject
{
    public ICommand PressedButton
    {
        get
        {
            return new Command((param) => { });
        }
    }
}

和主页:

    public MainPage()
    {
        this.InitializeComponent();
        this.NavigationCacheMode = NavigationCacheMode.Required;
        DataContext = new TestViewModel();
    }

这很奇怪,但 PressedButton 仅在应用程序启动时运行(它在启动时运行不是很奇怪吗?之后,即使在单击按钮后,也不会触发任何内容。我不知道出了什么问题。

应用程序运行后运行命令

我认为每次调用"getter"时返回一个新命令可能会导致绑定问题。尝试在构造函数中设置一次命令(例如)。

public MainPage()
{
    PressedAdd = new Command(param => SaveNote());
}
public ICommand PressedAdd { get; private set; }

SaveNote() 方法中,您可以测试这些值并保存(或不保存)它们:

private void SaveNote()
{
    if (NoteTitle == null || NoteContent == null)
        return;
    // Do something with NoteTitle and NoteContent
}