2021-02-24 18:35:01 +00:00
|
|
|
<UserControl x:Class="MassiveKnob.Plugin.CoreAudio.SetMuted.DeviceSetMutedActionSettingsView"
|
2021-02-24 08:05:11 +00:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
2021-02-24 18:35:01 +00:00
|
|
|
xmlns:setMuted="clr-namespace:MassiveKnob.Plugin.CoreAudio.SetMuted"
|
|
|
|
xmlns:base="clr-namespace:MassiveKnob.Plugin.CoreAudio.Base"
|
2021-02-24 08:05:11 +00:00
|
|
|
mc:Ignorable="d"
|
|
|
|
d:DesignHeight="200" d:DesignWidth="800"
|
2021-02-24 18:35:01 +00:00
|
|
|
d:DataContext="{d:DesignInstance setMuted:DeviceSetMutedActionSettingsViewModel}">
|
2021-02-24 08:05:11 +00:00
|
|
|
<StackPanel Orientation="Vertical">
|
2021-02-24 18:35:01 +00:00
|
|
|
<base:BaseDeviceSettingsView />
|
2021-02-24 08:05:11 +00:00
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|