26 lines
1.4 KiB
Plaintext
26 lines
1.4 KiB
Plaintext
|
<UserControl x:Class="MassiveKnob.Plugin.VoiceMeeter.GetParameter.VoiceMeeterGetParameterActionSettingsView"
|
||
|
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"
|
||
|
xmlns:getParameter="clr-namespace:MassiveKnob.Plugin.VoiceMeeter.GetParameter"
|
||
|
xmlns:coreAudio="clr-namespace:MassiveKnob.Plugin.VoiceMeeter"
|
||
|
xmlns:base="clr-namespace:MassiveKnob.Plugin.VoiceMeeter.Base"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="200" d:DesignWidth="800"
|
||
|
d:DataContext="{d:DesignInstance getParameter:VoiceMeeterGetParameterActionSettingsViewModel}">
|
||
|
<StackPanel Orientation="Vertical">
|
||
|
<base:BaseVoiceMeeterSettingsView />
|
||
|
|
||
|
<TextBlock Margin="0,24,0,0" Text="{x:Static coreAudio:Strings.SettingGetParameterParameter}" />
|
||
|
<TextBox Margin="0,4,0,0" Text="{Binding Parameter}" />
|
||
|
|
||
|
<TextBlock Margin="0,8,0,0" Text="{x:Static coreAudio:Strings.SettingGetParameterValue}" />
|
||
|
<TextBox Margin="0,4,0,0" Text="{Binding Value}" />
|
||
|
|
||
|
<CheckBox Margin="0,8,0,0" IsChecked="{Binding Inverted}">
|
||
|
<TextBlock Text="{x:Static coreAudio:Strings.SettingGetParameterInverted}" />
|
||
|
</CheckBox>
|
||
|
</StackPanel>
|
||
|
</UserControl>
|