14 lines
282 B
C#
14 lines
282 B
C#
using System.Windows;
|
|
using MembranePoreTester.ViewModels;
|
|
|
|
namespace MembranePoreTester
|
|
{
|
|
public partial class MainWindow : Window
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
DataContext = new MainViewModel();
|
|
}
|
|
}
|
|
} |