-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
46 lines (41 loc) · 2.44 KB
/
MainWindow.xaml
File metadata and controls
46 lines (41 loc) · 2.44 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
<Window x:Class="MassTextModifier.MainWindow"
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:local="clr-namespace:MassTextModifier"
mc:Ignorable="d"
Title="Nesting Contour" Height="500" Width="700" MinHeight="500" MinWidth="700" Icon="Resources/textModifierIcon.ico">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="5*"/>
<ColumnDefinition Width="120"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="3.5*"/>
<RowDefinition Height="100"/>
</Grid.RowDefinitions>
<ListView Margin="5" Name="myListView" DisplayMemberPath="FilePath " ></ListView>
<StackPanel Grid.Column="1" Width="100" Margin="0 10 0 0" HorizontalAlignment="Center">
<Button Content="Browse" Margin="5" Click="Browse_Button_Click"/>
<Button Margin="5" Content="Delete Selected" Click="Delete_Button_Click"/>
<Button Content="Delete All" Margin="5" Click="Delete_All_Button_Click"/>
<Button Content="Sort A-Z" Name="sortButton" Margin="5" Click="Sort_A_Z_Button_Click"/>
</StackPanel>
<StackPanel Grid.Row="1" Grid.ColumnSpan="2" Margin="10">
<DockPanel>
<RadioButton Content="Overwrite Existing Files" Margin="2" Height="15" Name="OverWriteRadioButton" Click="OverWriteRadioButton_Click"/>
<RadioButton Content="Create New" Margin="2" Height="15" Name="CreateNewRadioButton" Click="CreateNewRadioButton_Click"/>
<Button Name="SelectOutputLocationButton" Content="Select Output Location" Width="150"
HorizontalAlignment="Left" Margin="5 0 5 0" Click="SelectOutputLocationButton_Click"/>
<CheckBox Name="MyCheckBox" Content="Display filenames only" Height="15" Click="MyCheckBox_Click"/>
</DockPanel>
<DockPanel>
<Label Content="Output Location: "/>
<Label Content="URL" Name="outputFilePathLabel"/>
</DockPanel>
<Button Content="Execute" Width="80" HorizontalAlignment="Left" Margin="5"
Click="Execute_Button_Click"/>
</StackPanel>
</Grid>
</Window>