forked from SamsamTS/Memoria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModConflictWindow.xaml
62 lines (57 loc) · 2.27 KB
/
ModConflictWindow.xaml
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
<Window x:Class="Memoria.Launcher.ModConflictWindow"
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"
mc:Ignorable="d"
Title="{Binding WindowTitle, FallbackValue='Mod Conflicts'}"
WindowStartupLocation="CenterScreen"
Height="400" Width="600"
MinHeight="400" MinWidth="600">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="40"/>
<RowDefinition Height="*"/>
<RowDefinition Height="40"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="310"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock x:Name="OverallVerdict"
Margin="3,5,3,0"
Grid.Row="0"
Grid.Column="0"
Grid.ColumnSpan="2"
Text="Overall verdict"
TextAlignment="Center"
HorizontalAlignment="Center"
VerticalAlignment="Center"/>
<ListBox x:Name="ModList"
Margin="3,5,3,0"
Grid.Row="1"
Grid.Column="0"
SelectionChanged="OnModSelection"
DisplayMemberPath="Label"/>
<TextBox x:Name="DetailedInfos"
Margin="3,5,3,0"
Grid.Row="1"
Grid.Column="1"
Text="Detailed informations"
IsReadOnly="True"
ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Visible"
TextWrapping="NoWrap"/>
<WrapPanel Margin="3,5,3,5"
Grid.Row="2"
Grid.Column="0"
Grid.ColumnSpan="2"
HorizontalAlignment="Center"
VerticalAlignment="Bottom">
<Button x:Name="OkButton"
Content="Ok"
MinWidth="100"
Click="OnButtonClick"/>
</WrapPanel>
</Grid>
</Window>