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