14 lines
349 B
C#
14 lines
349 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
using CommunityToolkit.Mvvm.Input;
|
|
using CommunityToolkit.Mvvm.Messaging;
|
|
|
|
namespace Ursa.Demo.ViewModels;
|
|
|
|
public partial class ApplicationViewModel : ObservableObject
|
|
{
|
|
[RelayCommand]
|
|
private void JumpTo(string header)
|
|
{
|
|
WeakReferenceMessenger.Default.Send(header, "JumpTo");
|
|
}
|
|
} |