blob: 4dd12b4b0203695482358140ac6cc0826fbe5a6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
using System.Windows.Input;
using CommunityToolkit.Mvvm.Input;
namespace JVDesktop.ViewModels;
public class MainWindowViewModel : ViewModelBase
{
public string Greeting => "Welcome to Avalonia!";
public ICommand ButtonClickCommand { get; } = new RelayCommand(() =>
{
Console.WriteLine("Button clicked");
});
}
|