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-28 12:55:47 +00:00
|
|
|
xmlns:coreAudio="clr-namespace:MassiveKnob.Plugin.CoreAudio"
|
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-28 12:01:43 +00:00
|
|
|
|
2021-02-28 12:55:47 +00:00
|
|
|
<RadioButton Margin="0,8,0,0" IsChecked="{Binding ToggleTrue}">
|
|
|
|
<TextBlock Text="{x:Static coreAudio:Strings.SettingSetMutedToggleTrue}" />
|
|
|
|
</RadioButton>
|
|
|
|
|
|
|
|
<RadioButton Margin="0,8,0,0" IsChecked="{Binding ToggleFalse}">
|
|
|
|
<TextBlock Text="{x:Static coreAudio:Strings.SettingSetMutedToggleFalse}" />
|
|
|
|
</RadioButton>
|
|
|
|
|
|
|
|
<CheckBox Margin="24,8,0,0" IsChecked="{Binding SetInverted}">
|
|
|
|
<TextBlock Text="{x:Static coreAudio:Strings.SettingSetMutedSetInverted}" />
|
|
|
|
</CheckBox>
|
2021-02-24 08:05:11 +00:00
|
|
|
</StackPanel>
|
|
|
|
</UserControl>
|