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.
18 lines
319 B
C#
18 lines
319 B
C#
|
17 hours ago
|
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;
|
||
|
|
}
|
||
|
|
}
|