19 lines
383 B
C#
19 lines
383 B
C#
using MainModule.ViewModels;
|
|
using System.Windows;
|
|
|
|
namespace MainModule.Views
|
|
{
|
|
public partial class ConnectionConfigView : Window
|
|
{
|
|
public ConnectionConfigView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public ConnectionConfigView(ConnectionConfigViewModel viewModel) : this()
|
|
{
|
|
DataContext = viewModel;
|
|
}
|
|
}
|
|
}
|