Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Projekt135570/Projekt/.vs/Projekt/v16/.suo
Binary file not shown.
Empty file.
Binary file not shown.
51 changes: 51 additions & 0 deletions Projekt135570/Projekt/Amumu.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<Window x:Class="Projekt.Amumu"
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:Projekt"
mc:Ignorable="d"
Title="League of Legends Helper" Height="600" Width="500">
<ScrollViewer>
<Grid>
<Button Content="Back to Champions" HorizontalAlignment="Center" Margin="0,25,0,0" VerticalAlignment="Top" Width="150" Height="50" Click="MoveToChampions"/>

<Image Width="100" Margin="-300,-600,0,0">
<Image.Source>
<BitmapImage UriSource="/images/champions/Amumu.png"/>
</Image.Source>
</Image>
<TextBlock HorizontalAlignment="Left" Margin="170,135,0,0" TextWrapping="Wrap" Text="Amumu" VerticalAlignment="Top" Height="50" Width="250" FontSize="40" TextAlignment="Center" FontFamily="Helvetica" Foreground="FloralWhite" />
<TextBlock HorizontalAlignment="Left" Margin="170,200,0,0" TextWrapping="Wrap" Text="E > Q > W" VerticalAlignment="Top" Height="50" Width="250" FontSize="20" TextAlignment="Center" FontFamily="Helvetica" Foreground="FloralWhite" />
<StackPanel>
<Image Source="images/items/Cinderhulk.png" Width="50" Margin="-200,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="-200,0,0,0" Foreground="FloralWhite"><Run Text="Cinderhulk"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Tabi.png" Width="50" Margin="-100,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="-100,0,0,0" Foreground="FloralWhite"><Run Text="Ninja&#10;Tabi"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Abyssal.png" Width="50" Margin="0,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="0,0,0,0" Foreground="FloralWhite"><Run Text="Abyssal&#10;Mask"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Thornmail.png" Width="50" Margin="100,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="100,0,0,0" Foreground="FloralWhite"><Run Text="Thornmail"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Liandry.png" Width="50" Margin="200,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="200,0,0,0" Foreground="FloralWhite"><Run Text="Liandry's&#10;Torment"/></TextBlock>
</StackPanel>
<TextBlock Margin="150,400,150,50" TextAlignment="Center" Foreground="FloralWhite">
Last item depends on enemy team.
</TextBlock>
<Image Source="images/runes/Amumu.PNG" Width="400" Height="300" Margin="0,300,0,0" />
<TextBlock Margin="170,800,170,50" TextAlignment="Center">
<Hyperlink NavigateUri="https://www.probuilds.net/champions/details/Amumu" Foreground="White" RequestNavigate="Hyperlink_RequestNavigate">
Probuilds.net @ Amumu
</Hyperlink>
</TextBlock>
</Grid>
</ScrollViewer>
</Window>
45 changes: 45 additions & 0 deletions Projekt135570/Projekt/Amumu.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Diagnostics;
using System.Windows.Navigation;

namespace Projekt
{
public partial class Amumu : Window
{
public Amumu()
{
InitializeComponent();
WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
this.FontFamily = new FontFamily("Helvetica");

ImageBrush myBrush = new ImageBrush();
myBrush.ImageSource =
new BitmapImage(new Uri("C:/Users/F/source/repos/Projekt/images/backgrounds/background.png", UriKind.Absolute));
this.Background = myBrush;
}
private void MoveToChampions(object sender, RoutedEventArgs e)
{
Champions newWindow = new Champions();
newWindow.Show();
this.Close();
}
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
{
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
e.Handled = true;
}

}
}
52 changes: 52 additions & 0 deletions Projekt135570/Projekt/Annie.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<Window x:Class="Projekt.Annie"
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:Projekt"
mc:Ignorable="d"
Title="League of Legends Helper" Height="600" Width="500">
<ScrollViewer>
<Grid>
<Button Content="Back to Champions" HorizontalAlignment="Center" Margin="0,25,0,0" VerticalAlignment="Top" Width="150" Height="50" Click="MoveToChampions"/>

<Image Width="100" Margin="-300,-600,0,0">
<Image.Source>
<BitmapImage UriSource="/images/champions/Annie.png"/>
</Image.Source>
</Image>
<TextBlock HorizontalAlignment="Left" Margin="170,135,0,0" TextWrapping="Wrap" Text="Annie" VerticalAlignment="Top" Height="50" Width="250" FontSize="40" TextAlignment="Center" FontFamily="Helvetica" Foreground="FloralWhite" />
<TextBlock HorizontalAlignment="Left" Margin="170,200,0,0" TextWrapping="Wrap" Text="Q > W > E" VerticalAlignment="Top" Height="50" Width="250" FontSize="20" TextAlignment="Center" FontFamily="Helvetica" Foreground="FloralWhite" />
<StackPanel>
<Image Source="images/items/Echo.png" Width="50" Margin="-250,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="-250,0,0,0" Foreground="FloralWhite"><Run Text="Echo&#10;Luden"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Sorce.png" Width="50" Margin="-150,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="-150,0,0,0" Foreground="FloralWhite"><Run Text="Sorcerer's&#10;Shoes"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Zhonya.png" Width="50" Margin="-50,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="-50,0,0,0" Foreground="FloralWhite"><Run Text="Zhonya's&#10;Hourglass"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Morello.png" Width="50" Margin="50,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="50,0,0,0" Foreground="FloralWhite"><Run Text="Morello"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Rabadon.png" Width="50" Margin="150,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="150,0,0,0" Foreground="FloralWhite"><Run Text="Rabadon's&#10;Deathcap"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Void.png" Width="50" Margin="250,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="250,0,0,0" Foreground="FloralWhite"><Run Text="Void&#10;Staff"/></TextBlock>
</StackPanel>
<Image Source="images/runes/Annie.PNG" Width="400" Height="300" Margin="0,300,0,0" />
<TextBlock Margin="170,800,170,50" TextAlignment="Center">
<Hyperlink NavigateUri="https://www.probuilds.net/champions/details/Annie" Foreground="White" RequestNavigate="Hyperlink_RequestNavigate">
Probuilds.net @ Annie
</Hyperlink>
</TextBlock>
</Grid>
</ScrollViewer>
</Window>
45 changes: 45 additions & 0 deletions Projekt135570/Projekt/Annie.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Diagnostics;
using System.Windows.Navigation;

namespace Projekt
{
public partial class Annie : Window
{
public Annie()
{
InitializeComponent();
WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
this.FontFamily = new FontFamily("Helvetica");

ImageBrush myBrush = new ImageBrush();
myBrush.ImageSource =
new BitmapImage(new Uri("C:/Users/F/source/repos/Projekt/images/backgrounds/background.png", UriKind.Absolute));
this.Background = myBrush;
}
private void MoveToChampions(object sender, RoutedEventArgs e)
{
Champions newWindow = new Champions();
newWindow.Show();
this.Close();
}
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
{
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
e.Handled = true;
}

}
}
6 changes: 6 additions & 0 deletions Projekt135570/Projekt/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
9 changes: 9 additions & 0 deletions Projekt135570/Projekt/App.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Application x:Class="Projekt.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Projekt"
StartupUri="MainWindow.xaml">
<Application.Resources>

</Application.Resources>
</Application>
17 changes: 17 additions & 0 deletions Projekt135570/Projekt/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Threading.Tasks;
using System.Windows;

namespace Projekt
{
/// <summary>
/// Logika interakcji dla klasy App.xaml
/// </summary>
public partial class App : Application
{
}
}
52 changes: 52 additions & 0 deletions Projekt135570/Projekt/Ashe.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
<Window x:Class="Projekt.Ashe"
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:Projekt"
mc:Ignorable="d"
Title="League of Legends Helper" Height="600" Width="500">
<ScrollViewer>
<Grid>
<Button Content="Back to Champions" HorizontalAlignment="Center" Margin="0,25,0,0" VerticalAlignment="Top" Width="150" Height="50" Click="MoveToChampions"/>

<Image Width="100" Margin="-300,-600,0,0">
<Image.Source>
<BitmapImage UriSource="/images/champions/Ashe.png"/>
</Image.Source>
</Image>
<TextBlock HorizontalAlignment="Left" Margin="170,135,0,0" TextWrapping="Wrap" Text="Ashe" VerticalAlignment="Top" Height="50" Width="250" FontSize="40" TextAlignment="Center" FontFamily="Helvetica" Foreground="FloralWhite" />
<TextBlock HorizontalAlignment="Left" Margin="170,200,0,0" TextWrapping="Wrap" Text="W > Q > E" VerticalAlignment="Top" Height="50" Width="250" FontSize="20" TextAlignment="Center" FontFamily="Helvetica" Foreground="FloralWhite" />
<StackPanel>
<Image Source="images/items/Botrk.png" Width="50" Margin="-250,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="-250,0,0,0" Foreground="FloralWhite"><Run Text="Blade of&#10;Ruined&#10;King"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Berserker.png" Width="50" Margin="-150,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="-150,0,0,0" Foreground="FloralWhite"><Run Text="Berserker's&#10;Greaves"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Runaan.png" Width="50" Margin="-50,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="-50,0,0,0" Foreground="FloralWhite"><Run Text="Runaan's&#10;Hurricane"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/IE.png" Width="50" Margin="50,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="50,0,0,0" Foreground="FloralWhite"><Run Text="Infinity&#10;Edge"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/PD.png" Width="50" Margin="150,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="150,0,0,0" Foreground="FloralWhite"><Run Text="Phantom&#10;Dancer"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/GA.png" Width="50" Margin="250,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="250,0,0,0" Foreground="FloralWhite"><Run Text="Guardian&#10;Angel"/></TextBlock>
</StackPanel>
<Image Source="images/runes/Ashe.PNG" Width="400" Height="300" Margin="0,300,0,0" />
<TextBlock Margin="170,800,170,50" TextAlignment="Center">
<Hyperlink NavigateUri="https://www.probuilds.net/champions/details/Ashe" Foreground="White" RequestNavigate="Hyperlink_RequestNavigate">
Probuilds.net @ Ashe
</Hyperlink>
</TextBlock>
</Grid>
</ScrollViewer>
</Window>
45 changes: 45 additions & 0 deletions Projekt135570/Projekt/Ashe.xaml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
using System.Diagnostics;
using System.Windows.Navigation;

namespace Projekt
{
public partial class Ashe : Window
{
public Ashe()
{
InitializeComponent();
WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
this.FontFamily = new FontFamily("Helvetica");

ImageBrush myBrush = new ImageBrush();
myBrush.ImageSource =
new BitmapImage(new Uri("C:/Users/F/source/repos/Projekt/images/backgrounds/background.png", UriKind.Absolute));
this.Background = myBrush;
}
private void MoveToChampions(object sender, RoutedEventArgs e)
{
Champions newWindow = new Champions();
newWindow.Show();
this.Close();
}
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
{
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
e.Handled = true;
}

}
}
51 changes: 51 additions & 0 deletions Projekt135570/Projekt/Blitzcrank.xaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<Window x:Class="Projekt.Blitzcrank"
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:Projekt"
mc:Ignorable="d"
Title="League of Legends Helper" Height="600" Width="500">
<ScrollViewer>
<Grid>
<Button Content="Back to Champions" HorizontalAlignment="Center" Margin="0,25,0,0" VerticalAlignment="Top" Width="150" Height="50" Click="MoveToChampions"/>

<Image Width="100" Margin="-300,-600,0,0">
<Image.Source>
<BitmapImage UriSource="/images/champions/Blitzcrank.png"/>
</Image.Source>
</Image>
<TextBlock HorizontalAlignment="Left" Margin="170,135,0,0" TextWrapping="Wrap" Text="Blitzcrank" VerticalAlignment="Top" Height="50" Width="250" FontSize="40" TextAlignment="Center" FontFamily="Helvetica" Foreground="FloralWhite" />
<TextBlock HorizontalAlignment="Left" Margin="170,200,0,0" TextWrapping="Wrap" Text="Q > E > W" VerticalAlignment="Top" Height="50" Width="250" FontSize="20" TextAlignment="Center" FontFamily="Helvetica" Foreground="FloralWhite" />
<StackPanel>
<Image Source="images/items/Mobility.png" Width="50" Margin="-200,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="-200,0,0,0" Foreground="FloralWhite"><Run Text="Boots of&#10;Mobility"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Zeke.png" Width="50" Margin="-100,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="-100,0,0,0" Foreground="FloralWhite"><Run Text="Zeke's&#10;Convergence"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Vow.png" Width="50" Margin="0,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="0,0,0,0" Foreground="FloralWhite"><Run Text="Knight's&#10;Vow"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Solari.png" Width="50" Margin="100,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="100,0,0,0" Foreground="FloralWhite"><Run Text="Locket&#10;of the Iron&#10;Solari"/></TextBlock>
</StackPanel>
<StackPanel>
<Image Source="images/items/Redemption.png" Width="50" Margin="200,300,0,0" />
<TextBlock TextAlignment="Center" Width="75" Height="60" Margin="200,0,0,0" Foreground="FloralWhite"><Run Text="Redemption"/></TextBlock>
</StackPanel>
<TextBlock Margin="150,400,150,50" TextAlignment="Center" Foreground="FloralWhite">
Last item depends on enemy team.
</TextBlock>
<Image Source="images/runes/Blitzcrank.PNG" Width="400" Height="300" Margin="0,300,0,0" />
<TextBlock Margin="170,800,170,50" TextAlignment="Center">
<Hyperlink NavigateUri="https://www.probuilds.net/champions/details/Blitzcrank" Foreground="White" RequestNavigate="Hyperlink_RequestNavigate">
Probuilds.net @ Blitzcrank
</Hyperlink>
</TextBlock>
</Grid>
</ScrollViewer>
</Window>
Loading