Mark van Renswoude
28c25c8b43
Implemented mute/unmute input and output actions Changed MockDevice to EmulatorDevice with UI for easier testing
16 lines
429 B
C#
16 lines
429 B
C#
namespace MassiveKnob.Plugin.EmulatorDevice.Settings
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for EmulatorDeviceSettingsView.xaml
|
|
/// </summary>
|
|
public partial class EmulatorDeviceSettingsView
|
|
{
|
|
public EmulatorDeviceSettingsView(EmulatorDeviceSettingsViewModel settingsViewModel)
|
|
{
|
|
DataContext = settingsViewModel;
|
|
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|