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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|