13 lines
293 B
C#
13 lines
293 B
C#
|
|
using System.Windows.Controls;
|
|||
|
|
|
|||
|
|
namespace MembranePoreTester.Views
|
|||
|
|
{
|
|||
|
|
public partial class BubblePointView : UserControl
|
|||
|
|
{
|
|||
|
|
public BubblePointView()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
DataContext = new ViewModels.BubblePointViewModel();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|