20 lines
401 B
C#
20 lines
401 B
C#
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();
|
|
}
|
|
}
|
|
}
|