Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save syaifulnizamyahya/ad99fac77eddf0bd0164160388f731d9 to your computer and use it in GitHub Desktop.

Select an option

Save syaifulnizamyahya/ad99fac77eddf0bd0164160388f731d9 to your computer and use it in GitHub Desktop.
WPF MVVM Toolkit add new button with command
in xaml
<Button Content="Generate key" Command="{Binding GenerateKeyCommand}"/>
in viewmodel
private RelayCommand generateKeyCommand;
public ICommand GenerateKeyCommand => generateKeyCommand ??= new RelayCommand(GenerateKey);
private void GenerateKey()
{
MessageBox.Show("GenerateKey");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment