Files
Explorer-Workbench/src/Explorer.App/GitDiffWindow.xaml.cs

15 lines
277 B
C#

using System.Windows;
using Explorer.Presentation.ViewModels;
namespace Explorer.App;
public partial class GitDiffWindow : Window
{
public GitDiffWindow(GitDiffViewModel vm)
{
InitializeComponent();
DataContext = vm;
Title = vm.Title;
}
}