You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wcs_core/Sln.Wcs.UI/Views/SystemMonitorView.axaml.cs

18 lines
319 B
C#

using Avalonia.Controls;
using Sln.Wcs.UI.ViewModels;
namespace Sln.Wcs.UI.Views;
public partial class SystemMonitorView : UserControl
{
public SystemMonitorView()
{
InitializeComponent();
}
public SystemMonitorView(SystemMonitorViewModel vm) : this()
{
DataContext = vm;
}
}