简体   繁体   English

在应用程序运行后运行命令

[英]Command run after application run

I noticed that it happends not only in the one project but on multiple too so I will provide simple example. 我注意到它不仅发生在一个项目中,而且发生在多个项目中,因此我将提供一个简单的示例。 I've got such xaml: 我有这样的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>

my classes to binding data: 我的类绑定数据:

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) => { });
        }
    }
}

and main page: 和主页:

    public MainPage()
    {
        this.InitializeComponent();

        this.NavigationCacheMode = NavigationCacheMode.Required;
        DataContext = new TestViewModel();
    }

It's weird but PressedButton runs only on application start(isn't that weird it runs on start?). 这很奇怪,但PressedButton仅在应用程序启动时运行(不是很奇怪,它在启动时运行吗?)。 After that, even after button click there is nothing triggered. 之后,即使单击按钮后也不会触发任何操作。 I can't figure out what's wrong. 我不知道怎么了。

I think you may be causing binding issues by returning a new command each time the "getter" is called. 我认为您可能会因每次调用“ getter”而返回一个新命令而导致绑定问题。 Try setting the command once, in your constructor (for example). 尝试在构造函数中设置一次命令(例如)。

public MainPage()
{
    PressedAdd = new Command(param => SaveNote());
}

public ICommand PressedAdd { get; private set; }

In the SaveNote() method, you could test the values and either save (or not save) them: SaveNote()方法中,您可以测试值并保存(或不保存)它们:

private void SaveNote()
{
    if (NoteTitle == null || NoteContent == null)
        return;

    // Do something with NoteTitle and NoteContent
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM