aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.LogViewer.UI/ViewModels/LayoutViewVM.cs
blob: be185a8df7b8ede9e858fedc205526f14572bc4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.Commands;

namespace Tango.FSE.LogViewer.UI.ViewModels
{
    public class LayoutViewVM : LogViewerViewModel
    {
        public RelayCommand TestCommand { get; set; }

        public LayoutViewVM()
        {
            TestCommand = new RelayCommand(Test);
        }

        private async void Test()
        {
            await NotificationProvider.ShowInfo("This is a test message.");
        }
    }
}