16 lines
1021 B
Plaintext
16 lines
1021 B
Plaintext
|
<UserControl x:Class="MassiveKnob.Plugin.VoiceMeeter.Base.BaseVoiceMeeterSettingsView"
|
||
|
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:base="clr-namespace:MassiveKnob.Plugin.VoiceMeeter.Base"
|
||
|
xmlns:coreAudio="clr-namespace:MassiveKnob.Plugin.VoiceMeeter"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="200" d:DesignWidth="800"
|
||
|
d:DataContext="{d:DesignInstance base:BaseVoiceMeeterSettingsViewModel}">
|
||
|
<StackPanel Orientation="Vertical">
|
||
|
<TextBlock Text="{x:Static coreAudio:Strings.SettingVoiceMeeterVersion}" />
|
||
|
<ComboBox Margin="0,4,0,0" ItemsSource="{Binding Versions}" SelectedItem="{Binding SelectedVersion}" DisplayMemberPath="DisplayName" />
|
||
|
</StackPanel>
|
||
|
</UserControl>
|