forked from crosire/reshade
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSelect.xaml
More file actions
27 lines (27 loc) · 1.06 KB
/
Copy pathSelect.xaml
File metadata and controls
27 lines (27 loc) · 1.06 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
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:l="clr-namespace:ReShade.Setup"
x:Class="ReShade.Setup.SelectWindow"
Width="300"
Height="300"
WindowStyle="None"
WindowStartupLocation="CenterOwner">
<DockPanel LastChildFill="True">
<Label Content="Choose which effect files you want to install:" DockPanel.Dock="Top" Margin="5,5,5,0" />
<DockPanel DockPanel.Dock="Bottom" Margin="10,5,10,10">
<Button Content="Uncheck All" Width="100" HorizontalAlignment="Left" Click="ChangeChecked" />
<Button Content="OK" Width="100" HorizontalAlignment="Right" Click="ConfirmSelection" />
</DockPanel>
<ListView x:Name="EffectList" Margin="10,5,10,5">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<CheckBox VerticalAlignment="Center" Margin="0,0,5,0" IsChecked="{Binding IsChecked}" />
<TextBlock Text="{Binding Name}" />
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</DockPanel>
</Window>