Mark van Renswoude
ff1e1ca74c
Implemented orchestrator Implemented mock device Implemented serial device Implemented volume action Removed old implementation
15 lines
411 B
C#
15 lines
411 B
C#
namespace MassiveKnob.Plugin.CoreAudio.Settings
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for DeviceVolumeActionSettingsView.xaml
|
|
/// </summary>
|
|
public partial class DeviceVolumeActionSettingsView
|
|
{
|
|
public DeviceVolumeActionSettingsView(DeviceVolumeActionSettingsViewModel viewModel)
|
|
{
|
|
DataContext = viewModel;
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|