This commit is contained in:
xyy
2026-03-25 21:34:41 +08:00
parent 01a07f8811
commit dd0bd405ee
11 changed files with 555 additions and 4 deletions

14
Views/MainWindow.xaml.cs Normal file
View File

@@ -0,0 +1,14 @@
using System.Windows;
using MembranePoreTester.ViewModels;
namespace MembranePoreTester
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
DataContext = new MainViewModel();
}
}
}