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