Mark van Renswoude
ff1e1ca74c
Implemented orchestrator Implemented mock device Implemented serial device Implemented volume action Removed old implementation
15 lines
390 B
C#
15 lines
390 B
C#
namespace MassiveKnob.Plugin.SerialDevice.Settings
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for SerialDeviceSettingsView.xaml
|
|
/// </summary>
|
|
public partial class SerialDeviceSettingsView
|
|
{
|
|
public SerialDeviceSettingsView(SerialDeviceSettingsViewModel viewModel)
|
|
{
|
|
DataContext = viewModel;
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|