Initial commit: PulseDock System Monitor

This commit is contained in:
Developer
2026-07-23 12:37:00 +02:00
commit 2cfe8fb858
57 changed files with 3495 additions and 0 deletions
@@ -0,0 +1,19 @@
using System.Windows;
using PulseDock.App.ViewModels;
namespace PulseDock.App.Views
{
public partial class AboutWindow : Window
{
public AboutWindow(AboutViewModel viewModel)
{
InitializeComponent();
DataContext = viewModel;
}
private void Close_Click(object sender, RoutedEventArgs e)
{
Close();
}
}
}