-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathParamsWindow.xaml
More file actions
71 lines (66 loc) · 3.78 KB
/
ParamsWindow.xaml
File metadata and controls
71 lines (66 loc) · 3.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<adonisControls:AdonisWindow x:Class="PD2SoundBankEditor.ParamsWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:adonisControls="clr-namespace:AdonisUI.Controls;assembly=AdonisUI"
xmlns:adonisExtensions="clr-namespace:AdonisUI.Extensions;assembly=AdonisUI"
mc:Ignorable="d"
WindowStartupLocation="CenterOwner"
Title="Set audio properties" Height="360" Width="480" ShowInTaskbar="False">
<Window.Style>
<Style TargetType="Window" BasedOn="{StaticResource {x:Type Window}}" />
</Window.Style>
<Window.DataContext>
<Binding RelativeSource="{RelativeSource Self}" />
</Window.DataContext>
<Grid>
<Grid Name="mainGrid" Margin="8,8,8,8">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="24" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Label Grid.Column="0" Grid.Row="0" Content="Apply to the following sounds" />
<ListBox Name="soundIdListBox"
Grid.Column="0" Grid.Row="1" Grid.RowSpan="3" Margin="0,0,8,8"
SelectionMode="Extended" SelectionChanged="OnSoundIdSelectionChanged">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding SourceId}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<Label Name="numItemsSelectedLabel" Grid.Column="0" Grid.Row="4" Content="100 of 100 selected"
FontWeight="Normal" />
<Button Grid.Column="0" Grid.Row="5" Content="Select from clipboard" Height="24"
Click="OnClipboardMatchClick" Margin="0,0,8,0" />
<Label Grid.Column="1" Grid.Row="0" Content="Volume gain" />
<Grid Grid.Column="1" Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="1*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Slider Grid.Column="0" Name="audioLevelSlider" Maximum="24" Minimum="-96"
ValueChanged="OnAudioLevelSliderChange" Margin="0,0,8,0" />
<TextBox Grid.Column="1" Name="audioLevelTextBox" Text="0" MaxLength="5"
PreviewTextInput="CheckAudioLevelText" TextChanged="OnAudioLevelTextChange" Height="24" />
</Grid>
<Button Name="applyButton" Grid.Column="1" Grid.Row="4" Content="Apply" Height="24" Margin="0,0,0,8"
Click="OnApplyClick" IsEnabled="False" />
<Button Grid.Column="1" Grid.Row="5" Content="Cancel" Height="24" Click="OnCancelClick" />
</Grid>
<!--<ProgressBar Name="progressBar" Margin="8,8,8,8" VerticalAlignment="Bottom" Height="16"/>-->
</Grid>
</adonisControls:AdonisWindow>