CodeMerger/Views/LogWindow.xaml.cs

14 lines
246 B
C#

using System.Windows;
using CodeMerger.ViewModels;
namespace CodeMerger.Views;
public partial class LogWindow : Window
{
public LogWindow(LogViewModel viewModel)
{
InitializeComponent();
DataContext = viewModel;
}
}