-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
57 lines (57 loc) · 1.73 KB
/
MainWindow.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
<Window x:Class="SDPromptTool.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:SDPromptTool"
xmlns:view="clr-namespace:SDPromptTool.View"
mc:Ignorable="d"
Title="Prompt Tools"
Height="450"
Width="600"
Background="#1E1E1E"
KeyDown="Window_KeyDown">
<Window.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="GlobalResDictionary.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Window.Resources>
<Grid>
<TabControl x:Name="MainTab"
Background="Transparent"
Margin="4"
BorderBrush="CornflowerBlue">
<TabItem Style="{StaticResource TabItemStyle1}"
Header="Prompt Selector"
Background="Transparent"
Foreground="White">
<view:PromptSelector />
</TabItem>
<TabItem Style="{StaticResource TabItemStyle1}"
Header="Preset Manager"
Background="Transparent"
Foreground="White">
<view:PresetManager />
</TabItem>
<TabItem Style="{StaticResource TabItemStyle1}"
Header="Misc.Tools"
Background="Transparent"
Foreground="White">
<view:MiscellaneousTools />
</TabItem>
<TabItem Style="{StaticResource TabItemStyle1}"
Header="Danbooru Tags Wiki"
Background="Transparent"
Foreground="White">
<view:WebTab />
</TabItem>
<TabItem Style="{StaticResource TabItemStyle1}"
Header="Settings"
Background="Transparent"
Foreground="White">
</TabItem>
</TabControl>
</Grid>
</Window>