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