-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWindow1.xaml
86 lines (76 loc) · 4.11 KB
/
Window1.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
<Window x:Name="Aboutwindow" x:Class="Rock_paper_scissors.Window1"
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:Rock_paper_scissors"
mc:Ignorable="d"
Title="Window1" Height="188.974" Width="514.52" ScrollViewer.HorizontalScrollBarVisibility="Auto" ResizeMode="NoResize" Background="#FF2E8AFF" Foreground="White" BorderBrush="#FF2E8AFF" OpacityMask="#FF2E8AFF">
<Grid Background="#FF2E8AFF">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="auto"/>
</Grid.RowDefinitions>
<Viewbox Height="100" Width="100"/>
<RichTextBox HorizontalAlignment="Left" VerticalAlignment="Top" Margin="0,0,0,-1" TextChanged="RichTextBox_TextChanged" Grid.Column="0" Grid.Row="0" IsReadOnly="True" Background="#FF2E8AFF" Foreground="White">
<RichTextBox.Resources>
<Style TargetType="Hyperlink">
<Setter Property="Cursor" Value="Hand" />
<EventSetter Event="MouseLeftButtonDown" Handler="Hyperlink_MouseLeftButtonDown" />
</Style>
</RichTextBox.Resources>
<FlowDocument>
<Paragraph NumberSubstitution.CultureSource="User" FontFamily="Segoe UI">
<Run Text="Created by Mantie Reid II"/>
<LineBreak/>
<Hyperlink NavigateUri="https://github.com/MantieReid/Rock-paper-scissors">
<Run Foreground="#FF0410FF" Text="Source Code"/>
</Hyperlink>
<LineBreak/>
<Run Text="Sounds effects come from Super smash Ultimate. The Rock and sound effects come from the following people."/>
</Paragraph>
<Paragraph NumberSubstitution.CultureSource="User" FontFamily="Segoe UI">
<Run Text=" Rock sound is by SpookyModem. Which can be found Here ---->"/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Hyperlink NavigateUri="https://freesound.org/people/spookymodem/sounds/202098/">
<Run Foreground="#FF0410FF" Text="Rock Sound Link"/>
</Hyperlink>
<Run Foreground="#FF0410FF" Text=" "/>
<Run Foreground="Black" Text=" "/>
<Run Text="Scissors sound is by Pogotron. Which can be found Here ---->"/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Hyperlink NavigateUri="https://freesound.org/people/Pogotron/sounds/64313/#comments">
<Run Foreground="#FF0410FF" Text="Scissors Sound Link"/>
</Hyperlink>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" The paper sound was made by bash360. Which can be found here -----> "/>
<Run Text=" "/>
<Run Text=" "/>
<Run Text=" "/>
<Hyperlink NavigateUri="https://freesound.org/people/Bash360/sounds/214854/">
<Run Foreground="#FF0410FF" Text="Paper Sound Link"/>
</Hyperlink>
</Paragraph>
<Paragraph NumberSubstitution.CultureSource="User" FontFamily="Segoe UI">
<InlineUIContainer/>
</Paragraph>
</FlowDocument>
</RichTextBox>
</Grid>
</Window>