Skip to content

Commit 23da6ef

Browse files
authored
Update
1 parent 7c09b49 commit 23da6ef

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Views/ReportView.xaml.cs

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using System.Windows.Controls;
2+
using ProBizERP.ViewModels;
3+
4+
namespace ProBizERP.Views
5+
{
6+
public partial class ReportView : UserControl
7+
{
8+
ReportViewModel vm = new ReportViewModel();
9+
public ReportView()
10+
{
11+
InitializeComponent();
12+
DataContext = vm;
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)