Mark van Renswoude
ff1e1ca74c
Implemented orchestrator Implemented mock device Implemented serial device Implemented volume action Removed old implementation
16 lines
409 B
C#
16 lines
409 B
C#
namespace MassiveKnob.Plugin.MockDevice.Settings
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for MockDeviceSettingsView.xaml
|
|
/// </summary>
|
|
public partial class MockDeviceSettingsView
|
|
{
|
|
public MockDeviceSettingsView(MockDeviceSettingsViewModel settingsViewModel)
|
|
{
|
|
DataContext = settingsViewModel;
|
|
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|