-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.xaml
117 lines (117 loc) · 7.93 KB
/
About.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<Window x:Class="SkinText.About"
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:gif="http://wpfanimatedgif.codeplex.com"
xmlns:local="clr-namespace:SkinText"
mc:Ignorable="d"
Title="About SkinText" Height="400" Width="450" MinWidth="450" MinHeight="400" MaxWidth="450" MaxHeight="400" WindowStyle="None" SnapsToDevicePixels="True" ResizeMode="NoResize" ShowInTaskbar="False" Topmost="True" WindowStartupLocation="CenterOwner" AllowsTransparency="True" Background="#AA3A3A3A" MouseDown="Window_MouseDown" >
<Window.Resources>
<Style x:Key="buttonstyle" TargetType="{x:Type Button}">
<Setter Property="Background" Value="#602C2C2C"/>
<Setter Property="Foreground" Value="#FFE6E6E6"/>
<Setter Property="FontSize" Value="16"/>
<Setter Property="FontFamily" Value="Arial Black"/>
<Setter Property="FontWeight" Value="Bold"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Button}">
<Border Background="{TemplateBinding Background}">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#60606060"/>
</Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="Background" Value="#60AAAAAA"/>
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Button x:Name="CloseButt" Grid.Column="4" Grid.Row="0" Width="25" Height="25" HorizontalAlignment="Right" VerticalAlignment="Top" Click="CloseButt_Click" BorderBrush="{x:Null}" Style="{DynamicResource buttonstyle}">
<Button.Content>
<TextBlock Text="X" Foreground="#FFE6E6E6"/>
</Button.Content>
</Button>
<Label Grid.Column="1" Grid.Row="0" Grid.ColumnSpan="3" HorizontalAlignment="Center" Margin="0" VerticalAlignment="Center">
<Label.Content>
<TextBlock Text="About Skintext" FontSize="14.667" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Top"/>
</Label.Content>
</Label>
<Image Grid.Column="0" Grid.Row="1" Grid.ColumnSpan="2" Grid.RowSpan="2" Stretch="Uniform" VerticalAlignment="Center" HorizontalAlignment="Center" RenderTransformOrigin="0.5,0.5" gif:ImageBehavior.AnimatedSource="C:\Users\chris\OneDrive\Documentos\Visual Studio 2015\Projects\SkinText\SkinText\bin\Debug\img.png"/>
<Label Grid.Column="2" Grid.Row="1" Grid.ColumnSpan="3" Grid.RowSpan="2" HorizontalAlignment="Left" Margin="0" VerticalAlignment="Center">
<Label.Content>
<StackPanel>
<TextBlock Text="Copyright (C) 2016 Christian Gil" FontSize="13" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Top"/>
<TextBlock Text="Version: 0.1.5.0 Beta" FontSize="13" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Top"/>
<TextBlock FontSize="13" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Left" VerticalAlignment="Top">
Get the latest version at
<Hyperlink NavigateUri="http://google.com" RequestNavigate="Hyperlink_RequestNavigate">skintext.net</Hyperlink>
</TextBlock>
</StackPanel>
</Label.Content>
</Label>
<Label Grid.Column="2" Grid.Row="3" HorizontalAlignment="Center" Margin="0" VerticalAlignment="Top">
<Label.Content>
<TextBlock Text="Credits" FontSize="14.667" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Top"/>
</Label.Content>
</Label>
<Label Grid.Column="1" Grid.Row="3" Grid.ColumnSpan="2" HorizontalAlignment="Left" Margin="0" VerticalAlignment="Bottom">
<Label.Content>
<StackPanel>
<TextBlock Text="Creator And Developer:" FontSize="13" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Top"/>
<TextBlock Text="Graphics:" FontSize="13" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Top"/>
</StackPanel>
</Label.Content>
</Label>
<Label Grid.Column="3" Grid.Row="3" HorizontalAlignment="Left" Margin="0" VerticalAlignment="Bottom">
<Label.Content>
<StackPanel>
<TextBlock Text="Christian Gil" FontSize="13" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Top"/>
<TextBlock Text="Daniel Gil" FontSize="13" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Top"/>
</StackPanel>
</Label.Content>
</Label>
<Label Grid.Column="1" Grid.Row="4" Grid.ColumnSpan="3" HorizontalAlignment="Center" Margin="0" VerticalAlignment="Center">
<Label.Content>
<TextBlock Text="Libraries Used:" FontSize="14.667" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Top"/>
</Label.Content>
</Label>
<Label Grid.Column="1" Grid.Row="4" Grid.ColumnSpan="3" Grid.RowSpan="2" HorizontalAlignment="Center" Margin="0" VerticalAlignment="Center">
<Label.Content>
<StackPanel>
<TextBlock FontSize="11" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Top">
<Hyperlink NavigateUri="https://wpftoolkit.codeplex.com/" RequestNavigate="Hyperlink_RequestNavigate">Extended WPF Toolkit™ Community Edition</Hyperlink>
</TextBlock>
<TextBlock FontSize="11" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Top">
<Hyperlink NavigateUri="https://github.com/XamlAnimatedGif/WpfAnimatedGif/" RequestNavigate="Hyperlink_RequestNavigate">WPF Animated GIF</Hyperlink>
</TextBlock>
<TextBlock FontSize="11" FontFamily="Tahoma" Foreground="#FFE6E6E6" FontWeight="Bold" HorizontalAlignment="Center" VerticalAlignment="Top">
<Hyperlink NavigateUri="https://github.com/Fody/Costura/" RequestNavigate="Hyperlink_RequestNavigate">Fody / Costura </Hyperlink>
</TextBlock>
</StackPanel>
</Label.Content>
</Label>
</Grid>
</Window>