diff --git a/Projekt135570/Projekt/.vs/Projekt/v16/.suo b/Projekt135570/Projekt/.vs/Projekt/v16/.suo
new file mode 100644
index 0000000..d80f8de
Binary files /dev/null and b/Projekt135570/Projekt/.vs/Projekt/v16/.suo differ
diff --git a/Projekt135570/Projekt/.vs/Projekt/v16/Server/sqlite3/db.lock b/Projekt135570/Projekt/.vs/Projekt/v16/Server/sqlite3/db.lock
new file mode 100644
index 0000000..e69de29
diff --git a/Projekt135570/Projekt/.vs/Projekt/v16/Server/sqlite3/storage.ide b/Projekt135570/Projekt/.vs/Projekt/v16/Server/sqlite3/storage.ide
new file mode 100644
index 0000000..324f055
Binary files /dev/null and b/Projekt135570/Projekt/.vs/Projekt/v16/Server/sqlite3/storage.ide differ
diff --git a/Projekt135570/Projekt/Amumu.xaml b/Projekt135570/Projekt/Amumu.xaml
new file mode 100644
index 0000000..1d3f321
--- /dev/null
+++ b/Projekt135570/Projekt/Amumu.xaml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Last item depends on enemy team.
+
+
+
+
+ Probuilds.net @ Amumu
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Amumu.xaml.cs b/Projekt135570/Projekt/Amumu.xaml.cs
new file mode 100644
index 0000000..dbdaf1c
--- /dev/null
+++ b/Projekt135570/Projekt/Amumu.xaml.cs
@@ -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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Annie.xaml b/Projekt135570/Projekt/Annie.xaml
new file mode 100644
index 0000000..0bd0e37
--- /dev/null
+++ b/Projekt135570/Projekt/Annie.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Annie
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Annie.xaml.cs b/Projekt135570/Projekt/Annie.xaml.cs
new file mode 100644
index 0000000..e7e3bcf
--- /dev/null
+++ b/Projekt135570/Projekt/Annie.xaml.cs
@@ -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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/App.config b/Projekt135570/Projekt/App.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/Projekt135570/Projekt/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/App.xaml b/Projekt135570/Projekt/App.xaml
new file mode 100644
index 0000000..cc18831
--- /dev/null
+++ b/Projekt135570/Projekt/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/Projekt135570/Projekt/App.xaml.cs b/Projekt135570/Projekt/App.xaml.cs
new file mode 100644
index 0000000..3b625ee
--- /dev/null
+++ b/Projekt135570/Projekt/App.xaml.cs
@@ -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
+{
+ ///
+ /// Logika interakcji dla klasy App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/Projekt135570/Projekt/Ashe.xaml b/Projekt135570/Projekt/Ashe.xaml
new file mode 100644
index 0000000..d9ff9d2
--- /dev/null
+++ b/Projekt135570/Projekt/Ashe.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Ashe
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Ashe.xaml.cs b/Projekt135570/Projekt/Ashe.xaml.cs
new file mode 100644
index 0000000..81f55d0
--- /dev/null
+++ b/Projekt135570/Projekt/Ashe.xaml.cs
@@ -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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Blitzcrank.xaml b/Projekt135570/Projekt/Blitzcrank.xaml
new file mode 100644
index 0000000..0f4f15e
--- /dev/null
+++ b/Projekt135570/Projekt/Blitzcrank.xaml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Last item depends on enemy team.
+
+
+
+
+ Probuilds.net @ Blitzcrank
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Blitzcrank.xaml.cs b/Projekt135570/Projekt/Blitzcrank.xaml.cs
new file mode 100644
index 0000000..c49b721
--- /dev/null
+++ b/Projekt135570/Projekt/Blitzcrank.xaml.cs
@@ -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 Blitzcrank : Window
+ {
+ public Blitzcrank()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Caitlyn.xaml b/Projekt135570/Projekt/Caitlyn.xaml
new file mode 100644
index 0000000..1617dbf
--- /dev/null
+++ b/Projekt135570/Projekt/Caitlyn.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Caitlyn
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Caitlyn.xaml.cs b/Projekt135570/Projekt/Caitlyn.xaml.cs
new file mode 100644
index 0000000..6c7a2df
--- /dev/null
+++ b/Projekt135570/Projekt/Caitlyn.xaml.cs
@@ -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 Caitlyn : Window
+ {
+ public Caitlyn()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Champions.xaml b/Projekt135570/Projekt/Champions.xaml
new file mode 100644
index 0000000..7f828de
--- /dev/null
+++ b/Projekt135570/Projekt/Champions.xaml
@@ -0,0 +1,206 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Champions.xaml.cs b/Projekt135570/Projekt/Champions.xaml.cs
new file mode 100644
index 0000000..73498ec
--- /dev/null
+++ b/Projekt135570/Projekt/Champions.xaml.cs
@@ -0,0 +1,183 @@
+using System.Collections.Generic;
+using System.Windows;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System;
+
+namespace Projekt
+{
+ ///
+ /// Logika interakcji dla klasy Champions.xaml
+ ///
+ public partial class Champions : Window
+ {
+ public Champions()
+ {
+ InitializeComponent();
+ WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
+
+ 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 MoveToMenu(object sender, RoutedEventArgs e)
+ {
+ Menu newWindow = new Menu();
+ newWindow.Show();
+ this.Close();
+ }
+
+ private void AmumuClick(object sender, RoutedEventArgs e)
+ {
+ Amumu newWindow = new Amumu();
+ newWindow.Show();
+ this.Close();
+ }
+ private void AnnieClick(object sender, RoutedEventArgs e)
+ {
+ Annie newWindow = new Annie();
+ newWindow.Show();
+ this.Close();
+ }
+ private void AsheClick(object sender, RoutedEventArgs e)
+ {
+ Ashe newWindow = new Ashe();
+ newWindow.Show();
+ this.Close();
+ }
+ private void BlitzcrankClick(object sender, RoutedEventArgs e)
+ {
+ Blitzcrank newWindow = new Blitzcrank();
+ newWindow.Show();
+ this.Close();
+ }
+ private void CaitlynClick(object sender, RoutedEventArgs e)
+ {
+ Caitlyn newWindow = new Caitlyn();
+ newWindow.Show();
+ this.Close();
+ }
+ private void DianaClick(object sender, RoutedEventArgs e)
+ {
+ Diana newWindow = new Diana();
+ newWindow.Show();
+ this.Close();
+ }
+ private void DrMundoClick(object sender, RoutedEventArgs e)
+ {
+ DrMundo newWindow = new DrMundo();
+ newWindow.Show();
+ this.Close();
+ }
+ private void EzrealClick(object sender, RoutedEventArgs e)
+ {
+ Ezreal newWindow = new Ezreal();
+ newWindow.Show();
+ this.Close();
+ }
+ private void GarenClick(object sender, RoutedEventArgs e)
+ {
+ Garen newWindow = new Garen();
+ newWindow.Show();
+ this.Close();
+ }
+ private void JannaClick(object sender, RoutedEventArgs e)
+ {
+ Janna newWindow = new Janna();
+ newWindow.Show();
+ this.Close();
+ }
+ private void LeonaClick(object sender, RoutedEventArgs e)
+ {
+ Leona newWindow = new Leona();
+ newWindow.Show();
+ this.Close();
+ }
+ private void LuxClick(object sender, RoutedEventArgs e)
+ {
+ Lux newWindow = new Lux();
+ newWindow.Show();
+ this.Close();
+ }
+ private void MalphiteClick(object sender, RoutedEventArgs e)
+ {
+ Malphite newWindow = new Malphite();
+ newWindow.Show();
+ this.Close();
+ }
+ private void MalzaharClick(object sender, RoutedEventArgs e)
+ {
+ Malzahar newWindow = new Malzahar();
+ newWindow.Show();
+ this.Close();
+ }
+ private void MaokaiClick(object sender, RoutedEventArgs e)
+ {
+ Maokai newWindow = new Maokai();
+ newWindow.Show();
+ this.Close();
+ }
+ private void MasterYiClick(object sender, RoutedEventArgs e)
+ {
+ MasterYi newWindow = new MasterYi();
+ newWindow.Show();
+ this.Close();
+ }
+ private void MissFortuneClick(object sender, RoutedEventArgs e)
+ {
+ MissFortune newWindow = new MissFortune();
+ newWindow.Show();
+ this.Close();
+ }
+ private void MorganaClick(object sender, RoutedEventArgs e)
+ {
+ Morgana newWindow = new Morgana();
+ newWindow.Show();
+ this.Close();
+ }
+ private void NasusClick(object sender, RoutedEventArgs e)
+ {
+ Nasus newWindow = new Nasus();
+ newWindow.Show();
+ this.Close();
+ }
+ private void NeekoClick(object sender, RoutedEventArgs e)
+ {
+ Neeko newWindow = new Neeko();
+ newWindow.Show();
+ this.Close();
+ }
+ private void ShyvanaClick(object sender, RoutedEventArgs e)
+ {
+ Shyvana newWindow = new Shyvana();
+ newWindow.Show();
+ this.Close();
+ }
+ private void SkarnerClick(object sender, RoutedEventArgs e)
+ {
+ Skarner newWindow = new Skarner();
+ newWindow.Show();
+ this.Close();
+ }
+ private void SorakaClick(object sender, RoutedEventArgs e)
+ {
+ Soraka newWindow = new Soraka();
+ newWindow.Show();
+ this.Close();
+ }
+ private void TristanaClick(object sender, RoutedEventArgs e)
+ {
+ Tristana newWindow = new Tristana();
+ newWindow.Show();
+ this.Close();
+ }
+ private void VolibearClick(object sender, RoutedEventArgs e)
+ {
+ Volibear newWindow = new Volibear();
+ newWindow.Show();
+ this.Close();
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Credits.xaml b/Projekt135570/Projekt/Credits.xaml
new file mode 100644
index 0000000..db4e23f
--- /dev/null
+++ b/Projekt135570/Projekt/Credits.xaml
@@ -0,0 +1,28 @@
+
+
+
+
+ Contact with the Author:
+
+
+ GitHub
+
+
+ Mail: fb7@vp.pl
+
+
+ Filip Borkowski
+
+
+ Student of University of Warmia and Mazury
+
+
+
+
diff --git a/Projekt135570/Projekt/Credits.xaml.cs b/Projekt135570/Projekt/Credits.xaml.cs
new file mode 100644
index 0000000..e57b7cf
--- /dev/null
+++ b/Projekt135570/Projekt/Credits.xaml.cs
@@ -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.Navigation;
+using System.Windows.Shapes;
+using System.Diagnostics;
+
+namespace Projekt
+{
+ public partial class Credits : Window
+ {
+ public Credits()
+ {
+ InitializeComponent();
+ WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
+
+ 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 MoveToMenu(object sender, RoutedEventArgs e)
+ {
+ Menu newWindow = new Menu();
+ newWindow.Show();
+ this.Close();
+ }
+
+ private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
+ {
+ Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
+ e.Handled = true;
+ }
+ }
+}
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Diana.xaml b/Projekt135570/Projekt/Diana.xaml
new file mode 100644
index 0000000..7c2ce98
--- /dev/null
+++ b/Projekt135570/Projekt/Diana.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Diana
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Diana.xaml.cs b/Projekt135570/Projekt/Diana.xaml.cs
new file mode 100644
index 0000000..3f09e2c
--- /dev/null
+++ b/Projekt135570/Projekt/Diana.xaml.cs
@@ -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 Diana : Window
+ {
+ public Diana()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/DrMundo.xaml b/Projekt135570/Projekt/DrMundo.xaml
new file mode 100644
index 0000000..39b692f
--- /dev/null
+++ b/Projekt135570/Projekt/DrMundo.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Dr. Mundo
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/DrMundo.xaml.cs b/Projekt135570/Projekt/DrMundo.xaml.cs
new file mode 100644
index 0000000..d08e899
--- /dev/null
+++ b/Projekt135570/Projekt/DrMundo.xaml.cs
@@ -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 DrMundo : Window
+ {
+ public DrMundo()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Ezreal.xaml b/Projekt135570/Projekt/Ezreal.xaml
new file mode 100644
index 0000000..3fb667c
--- /dev/null
+++ b/Projekt135570/Projekt/Ezreal.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Ezreal
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Ezreal.xaml.cs b/Projekt135570/Projekt/Ezreal.xaml.cs
new file mode 100644
index 0000000..811426f
--- /dev/null
+++ b/Projekt135570/Projekt/Ezreal.xaml.cs
@@ -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 Ezreal : Window
+ {
+ public Ezreal()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Garen.xaml b/Projekt135570/Projekt/Garen.xaml
new file mode 100644
index 0000000..9d832fc
--- /dev/null
+++ b/Projekt135570/Projekt/Garen.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Garen
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Garen.xaml.cs b/Projekt135570/Projekt/Garen.xaml.cs
new file mode 100644
index 0000000..58512ee
--- /dev/null
+++ b/Projekt135570/Projekt/Garen.xaml.cs
@@ -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 Garen : Window
+ {
+ public Garen()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Information.xaml b/Projekt135570/Projekt/Information.xaml
new file mode 100644
index 0000000..b55b0e7
--- /dev/null
+++ b/Projekt135570/Projekt/Information.xaml
@@ -0,0 +1,25 @@
+
+
+
+
+If you don't know onwhat lane you should focus, read
+this article.
+
+
+In this program I chose 25 champions (5 per lane)which are in my opinion the easiest in this game.
+ Remember, that sometimes you should adapt to the
+ conditions of the current game and choose other items,for example if enemy ad carry is strong, take somearmor instead of magic resist.
+
+
+ The client is actually on patch 10.1and this application is focused on this patch.
+ Each champion card has an link,which takes you to an external sitewhere you can look at pro players builds.
+
+
+
diff --git a/Projekt135570/Projekt/Information.xaml.cs b/Projekt135570/Projekt/Information.xaml.cs
new file mode 100644
index 0000000..d7a02f7
--- /dev/null
+++ b/Projekt135570/Projekt/Information.xaml.cs
@@ -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.Navigation;
+using System.Windows.Shapes;
+using System.Diagnostics;
+
+namespace Projekt
+{
+ public partial class Information : Window
+ {
+ public Information()
+ {
+ InitializeComponent();
+ WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
+
+ 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 MoveToMenu(object sender, RoutedEventArgs e)
+ {
+ Menu newWindow = new Menu();
+ newWindow.Show();
+ this.Close();
+ }
+
+ private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
+ {
+ Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
+ e.Handled = true;
+ }
+ }
+}
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Janna.xaml b/Projekt135570/Projekt/Janna.xaml
new file mode 100644
index 0000000..e54fd90
--- /dev/null
+++ b/Projekt135570/Projekt/Janna.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Janna
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Janna.xaml.cs b/Projekt135570/Projekt/Janna.xaml.cs
new file mode 100644
index 0000000..67b90c0
--- /dev/null
+++ b/Projekt135570/Projekt/Janna.xaml.cs
@@ -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 Janna : Window
+ {
+ public Janna()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Leona.xaml b/Projekt135570/Projekt/Leona.xaml
new file mode 100644
index 0000000..f929c2f
--- /dev/null
+++ b/Projekt135570/Projekt/Leona.xaml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Last item depends on enemy team.
+
+
+
+
+ Probuilds.net @ Leona
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Leona.xaml.cs b/Projekt135570/Projekt/Leona.xaml.cs
new file mode 100644
index 0000000..3a4ae23
--- /dev/null
+++ b/Projekt135570/Projekt/Leona.xaml.cs
@@ -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 Leona : Window
+ {
+ public Leona()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Lux.xaml b/Projekt135570/Projekt/Lux.xaml
new file mode 100644
index 0000000..f5266a0
--- /dev/null
+++ b/Projekt135570/Projekt/Lux.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Lux
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Lux.xaml.cs b/Projekt135570/Projekt/Lux.xaml.cs
new file mode 100644
index 0000000..1306b6b
--- /dev/null
+++ b/Projekt135570/Projekt/Lux.xaml.cs
@@ -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 Lux : Window
+ {
+ public Lux()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/MainWindow.xaml b/Projekt135570/Projekt/MainWindow.xaml
new file mode 100644
index 0000000..ddf4930
--- /dev/null
+++ b/Projekt135570/Projekt/MainWindow.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/MainWindow.xaml.cs b/Projekt135570/Projekt/MainWindow.xaml.cs
new file mode 100644
index 0000000..ed0e2f3
--- /dev/null
+++ b/Projekt135570/Projekt/MainWindow.xaml.cs
@@ -0,0 +1,41 @@
+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.Navigation;
+using System.Windows.Shapes;
+
+namespace Projekt
+{
+ ///
+ /// Logika interakcji dla klasy MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
+
+ ImageBrush myBrush = new ImageBrush();
+ myBrush.ImageSource =
+ new BitmapImage(new Uri("C:/Users/F/source/repos/Projekt/images/backgrounds/startbackground.png", UriKind.Absolute));
+ this.Background = myBrush;
+ }
+
+ private void MoveToMenu(object sender, RoutedEventArgs e)
+ {
+ Menu newWindow = new Menu();
+ newWindow.Show();
+ this.Close();
+ }
+ }
+}
diff --git a/Projekt135570/Projekt/Malphite.xaml b/Projekt135570/Projekt/Malphite.xaml
new file mode 100644
index 0000000..f5e40e3
--- /dev/null
+++ b/Projekt135570/Projekt/Malphite.xaml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Last item depends on enemy team.
+
+
+
+
+ Probuilds.net @ Malphite
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Malphite.xaml.cs b/Projekt135570/Projekt/Malphite.xaml.cs
new file mode 100644
index 0000000..63f9482
--- /dev/null
+++ b/Projekt135570/Projekt/Malphite.xaml.cs
@@ -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 Malphite : Window
+ {
+ public Malphite()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Malzahar.xaml b/Projekt135570/Projekt/Malzahar.xaml
new file mode 100644
index 0000000..15372f1
--- /dev/null
+++ b/Projekt135570/Projekt/Malzahar.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Malzahar
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Malzahar.xaml.cs b/Projekt135570/Projekt/Malzahar.xaml.cs
new file mode 100644
index 0000000..f74ef46
--- /dev/null
+++ b/Projekt135570/Projekt/Malzahar.xaml.cs
@@ -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 Malzahar : Window
+ {
+ public Malzahar()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Maokai.xaml b/Projekt135570/Projekt/Maokai.xaml
new file mode 100644
index 0000000..949595a
--- /dev/null
+++ b/Projekt135570/Projekt/Maokai.xaml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Last item depends on enemy team.
+
+
+
+
+ Probuilds.net @ Maokai
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Maokai.xaml.cs b/Projekt135570/Projekt/Maokai.xaml.cs
new file mode 100644
index 0000000..a48054c
--- /dev/null
+++ b/Projekt135570/Projekt/Maokai.xaml.cs
@@ -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 Maokai : Window
+ {
+ public Maokai()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/MasterYi.xaml b/Projekt135570/Projekt/MasterYi.xaml
new file mode 100644
index 0000000..bb9fb99
--- /dev/null
+++ b/Projekt135570/Projekt/MasterYi.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Master Yi
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/MasterYi.xaml.cs b/Projekt135570/Projekt/MasterYi.xaml.cs
new file mode 100644
index 0000000..5791914
--- /dev/null
+++ b/Projekt135570/Projekt/MasterYi.xaml.cs
@@ -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 MasterYi : Window
+ {
+ public MasterYi()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Menu.xaml b/Projekt135570/Projekt/Menu.xaml
new file mode 100644
index 0000000..8e3610c
--- /dev/null
+++ b/Projekt135570/Projekt/Menu.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
diff --git a/Projekt135570/Projekt/Menu.xaml.cs b/Projekt135570/Projekt/Menu.xaml.cs
new file mode 100644
index 0000000..79246a8
--- /dev/null
+++ b/Projekt135570/Projekt/Menu.xaml.cs
@@ -0,0 +1,54 @@
+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;
+
+namespace Projekt
+{
+ ///
+ /// Logika interakcji dla klasy Menu.xaml
+ ///
+ public partial class Menu : Window
+ {
+ public Menu()
+ {
+ InitializeComponent();
+ WindowStartupLocation = System.Windows.WindowStartupLocation.CenterScreen;
+
+ 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 MoveToInformation(object sender, RoutedEventArgs e)
+ {
+ Information newWindow = new Information();
+ newWindow.Show();
+ this.Close();
+ }
+
+ private void MoveToCredits(object sender, RoutedEventArgs e)
+ {
+ Credits newWindow = new Credits();
+ newWindow.Show();
+ this.Close();
+ }
+ }
+}
diff --git a/Projekt135570/Projekt/MissFortune.xaml b/Projekt135570/Projekt/MissFortune.xaml
new file mode 100644
index 0000000..086b8fc
--- /dev/null
+++ b/Projekt135570/Projekt/MissFortune.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Miss Fortune
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/MissFortune.xaml.cs b/Projekt135570/Projekt/MissFortune.xaml.cs
new file mode 100644
index 0000000..6c5eca9
--- /dev/null
+++ b/Projekt135570/Projekt/MissFortune.xaml.cs
@@ -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 MissFortune : Window
+ {
+ public MissFortune()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Morgana.xaml b/Projekt135570/Projekt/Morgana.xaml
new file mode 100644
index 0000000..2b4b597
--- /dev/null
+++ b/Projekt135570/Projekt/Morgana.xaml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Last item depends on enemy team.
+
+
+
+
+ Probuilds.net @ Morgana
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Morgana.xaml.cs b/Projekt135570/Projekt/Morgana.xaml.cs
new file mode 100644
index 0000000..5dca9a8
--- /dev/null
+++ b/Projekt135570/Projekt/Morgana.xaml.cs
@@ -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 Morgana : Window
+ {
+ public Morgana()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Nasus.xaml b/Projekt135570/Projekt/Nasus.xaml
new file mode 100644
index 0000000..5198f52
--- /dev/null
+++ b/Projekt135570/Projekt/Nasus.xaml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Last item depends on enemy team.
+
+
+
+
+ Probuilds.net @ Nasus
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Nasus.xaml.cs b/Projekt135570/Projekt/Nasus.xaml.cs
new file mode 100644
index 0000000..8d9d18a
--- /dev/null
+++ b/Projekt135570/Projekt/Nasus.xaml.cs
@@ -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 Nasus : Window
+ {
+ public Nasus()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Neeko.xaml b/Projekt135570/Projekt/Neeko.xaml
new file mode 100644
index 0000000..0c2628a
--- /dev/null
+++ b/Projekt135570/Projekt/Neeko.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Neeko
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Neeko.xaml.cs b/Projekt135570/Projekt/Neeko.xaml.cs
new file mode 100644
index 0000000..37f07de
--- /dev/null
+++ b/Projekt135570/Projekt/Neeko.xaml.cs
@@ -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 Neeko : Window
+ {
+ public Neeko()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Projekt.csproj b/Projekt135570/Projekt/Projekt.csproj
new file mode 100644
index 0000000..d792fbd
--- /dev/null
+++ b/Projekt135570/Projekt/Projekt.csproj
@@ -0,0 +1,442 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {3E3998A3-CE37-4FD0-A864-D2B26B88005A}
+ WinExe
+ Projekt
+ Projekt
+ v4.7.2
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+ favicon.ico
+
+
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ Information.xaml
+
+
+ Shyvana.xaml
+
+
+ Skarner.xaml
+
+
+ Soraka.xaml
+
+
+ Tristana.xaml
+
+
+ Volibear.xaml
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+ Designer
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+ Designer
+
+
+ Amumu.xaml
+
+
+ Annie.xaml
+
+
+ App.xaml
+ Code
+
+
+ Ashe.xaml
+
+
+ Blitzcrank.xaml
+
+
+ Caitlyn.xaml
+
+
+ Champions.xaml
+
+
+ Credits.xaml
+
+
+ Diana.xaml
+
+
+ DrMundo.xaml
+
+
+ Ezreal.xaml
+
+
+ Garen.xaml
+
+
+ Janna.xaml
+
+
+ Leona.xaml
+
+
+ Lux.xaml
+
+
+ MainWindow.xaml
+ Code
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+
+
+ Malphite.xaml
+
+
+ Malzahar.xaml
+
+
+ Maokai.xaml
+
+
+ MasterYi.xaml
+
+
+ Menu.xaml
+
+
+ MissFortune.xaml
+
+
+ Morgana.xaml
+
+
+ Nasus.xaml
+
+
+ Neeko.xaml
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Projekt.sln b/Projekt135570/Projekt/Projekt.sln
new file mode 100644
index 0000000..4fa8c6b
--- /dev/null
+++ b/Projekt135570/Projekt/Projekt.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 16
+VisualStudioVersion = 16.0.29613.14
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Projekt", "Projekt.csproj", "{3E3998A3-CE37-4FD0-A864-D2B26B88005A}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {3E3998A3-CE37-4FD0-A864-D2B26B88005A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {3E3998A3-CE37-4FD0-A864-D2B26B88005A}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {3E3998A3-CE37-4FD0-A864-D2B26B88005A}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {3E3998A3-CE37-4FD0-A864-D2B26B88005A}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {316CE81E-3266-4074-A4F3-DE46D8F847C3}
+ EndGlobalSection
+EndGlobal
diff --git a/Projekt135570/Projekt/Properties/AssemblyInfo.cs b/Projekt135570/Projekt/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..40ff9ef
--- /dev/null
+++ b/Projekt135570/Projekt/Properties/AssemblyInfo.cs
@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// Ogólne informacje o zestawie są kontrolowane poprzez następujący
+// zestaw atrybutów. Zmień wartości tych atrybutów, aby zmodyfikować informacje
+// powiązane z zestawem.
+[assembly: AssemblyTitle("Projekt")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Projekt")]
+[assembly: AssemblyCopyright("Copyright © 2020")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Ustawienie elementu ComVisible na wartość false sprawia, że typy w tym zestawie są niewidoczne
+// dla składników COM. Jeśli potrzebny jest dostęp do typu w tym zestawie z
+// COM, ustaw wartość true dla atrybutu ComVisible tego typu.
+[assembly: ComVisible(false)]
+
+//Aby rozpocząć kompilację aplikacji możliwych do zlokalizowania, ustaw
+//Kultura_używana_podczas_kodowania w pliku csproj
+//w grupie . Jeśli na przykład jest używany język angielski (USA)
+//w plikach źródłowych ustaw dla elementu wartość en-US. Następnie usuń komentarz dla
+//poniższego atrybutu NeutralResourceLanguage. Zaktualizuj wartość „en-US” w
+//poniższej linii tak, aby dopasować ustawienie UICulture w pliku projektu.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //gdzie znajdują się słowniki zasobów specyficznych dla motywów
+ //(używane, jeśli nie można odnaleźć zasobu na stronie,
+ // lub słowniki zasobów aplikacji)
+ ResourceDictionaryLocation.SourceAssembly //gdzie znajduje się słownik zasobów ogólnych
+ //(używane, jeśli nie można odnaleźć zasobu na stronie,
+ // aplikacji lub słowników zasobów specyficznych dla motywów)
+)]
+
+
+// Informacje o wersji zestawu zawierają następujące cztery wartości:
+//
+// Wersja główna
+// Wersja pomocnicza
+// Numer kompilacji
+// Poprawka
+//
+// Możesz określić wszystkie wartości lub użyć domyślnych numerów kompilacji i poprawki
+// przy użyciu symbolu „*”, tak jak pokazano poniżej:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Projekt135570/Projekt/Properties/Resources.Designer.cs b/Projekt135570/Projekt/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..8b1c3c6
--- /dev/null
+++ b/Projekt135570/Projekt/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja środowiska uruchomieniowego: 4.0.30319.42000
+//
+// Modyfikacje tego pliku mogą spowodować niewłaściwe zachowanie i zostaną utracone
+// w przypadku ponownego wygenerowania kodu.
+//
+//------------------------------------------------------------------------------
+
+namespace Projekt.Properties
+{
+
+
+ ///
+ /// Silnie typizowana klasa zasobów do wyszukiwania zlokalizowanych ciągów itd.
+ ///
+ // Ta klasa została automatycznie wygenerowana za pomocą klasy StronglyTypedResourceBuilder
+ // przez narzędzie, takie jak ResGen lub Visual Studio.
+ // Aby dodać lub usunąć składowe, edytuj plik ResX, a następnie ponownie uruchom narzędzie ResGen
+ // z opcją /str lub ponownie skompiluj projekt programu VS.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Zwraca buforowane wystąpienie składnika ResourceManager używane przez tę klasę.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Projekt.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Przesłania właściwość CurrentUICulture bieżącego wątku dla wszystkich
+ /// przypadków przeszukiwania zasobów za pomocą tej silnie typizowanej klasy zasobów.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/Projekt135570/Projekt/Properties/Resources.resx b/Projekt135570/Projekt/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/Projekt135570/Projekt/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Properties/Settings.Designer.cs b/Projekt135570/Projekt/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..072db01
--- /dev/null
+++ b/Projekt135570/Projekt/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace Projekt.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/Projekt135570/Projekt/Properties/Settings.settings b/Projekt135570/Projekt/Properties/Settings.settings
new file mode 100644
index 0000000..033d7a5
--- /dev/null
+++ b/Projekt135570/Projekt/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Shyvana.xaml b/Projekt135570/Projekt/Shyvana.xaml
new file mode 100644
index 0000000..9bddd92
--- /dev/null
+++ b/Projekt135570/Projekt/Shyvana.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Shyvana
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Shyvana.xaml.cs b/Projekt135570/Projekt/Shyvana.xaml.cs
new file mode 100644
index 0000000..afe1e01
--- /dev/null
+++ b/Projekt135570/Projekt/Shyvana.xaml.cs
@@ -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 Shyvana : Window
+ {
+ public Shyvana()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Skarner.xaml b/Projekt135570/Projekt/Skarner.xaml
new file mode 100644
index 0000000..d054a8b
--- /dev/null
+++ b/Projekt135570/Projekt/Skarner.xaml
@@ -0,0 +1,51 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Last item depends on enemy team.
+
+
+
+
+ Probuilds.net @ Skarner
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Skarner.xaml.cs b/Projekt135570/Projekt/Skarner.xaml.cs
new file mode 100644
index 0000000..72bb55a
--- /dev/null
+++ b/Projekt135570/Projekt/Skarner.xaml.cs
@@ -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 Skarner : Window
+ {
+ public Skarner()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Soraka.xaml b/Projekt135570/Projekt/Soraka.xaml
new file mode 100644
index 0000000..b301b3e
--- /dev/null
+++ b/Projekt135570/Projekt/Soraka.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Soraka
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Soraka.xaml.cs b/Projekt135570/Projekt/Soraka.xaml.cs
new file mode 100644
index 0000000..d448c10
--- /dev/null
+++ b/Projekt135570/Projekt/Soraka.xaml.cs
@@ -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 Soraka : Window
+ {
+ public Soraka()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Tristana.xaml b/Projekt135570/Projekt/Tristana.xaml
new file mode 100644
index 0000000..0180761
--- /dev/null
+++ b/Projekt135570/Projekt/Tristana.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Tristana
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Tristana.xaml.cs b/Projekt135570/Projekt/Tristana.xaml.cs
new file mode 100644
index 0000000..91611ec
--- /dev/null
+++ b/Projekt135570/Projekt/Tristana.xaml.cs
@@ -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 Tristana : Window
+ {
+ public Tristana()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/Volibear.xaml b/Projekt135570/Projekt/Volibear.xaml
new file mode 100644
index 0000000..3f02ef2
--- /dev/null
+++ b/Projekt135570/Projekt/Volibear.xaml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Probuilds.net @ Volibear
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/Volibear.xaml.cs b/Projekt135570/Projekt/Volibear.xaml.cs
new file mode 100644
index 0000000..a31edff
--- /dev/null
+++ b/Projekt135570/Projekt/Volibear.xaml.cs
@@ -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 Volibear : Window
+ {
+ public Volibear()
+ {
+ 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;
+ }
+
+ }
+}
diff --git a/Projekt135570/Projekt/bin/Debug/Projekt.exe b/Projekt135570/Projekt/bin/Debug/Projekt.exe
new file mode 100644
index 0000000..5b4a4d9
Binary files /dev/null and b/Projekt135570/Projekt/bin/Debug/Projekt.exe differ
diff --git a/Projekt135570/Projekt/bin/Debug/Projekt.exe.config b/Projekt135570/Projekt/bin/Debug/Projekt.exe.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/Projekt135570/Projekt/bin/Debug/Projekt.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Projekt135570/Projekt/bin/Debug/Projekt.pdb b/Projekt135570/Projekt/bin/Debug/Projekt.pdb
new file mode 100644
index 0000000..d8d4ec4
Binary files /dev/null and b/Projekt135570/Projekt/bin/Debug/Projekt.pdb differ
diff --git a/Projekt135570/Projekt/favicon.ico b/Projekt135570/Projekt/favicon.ico
new file mode 100644
index 0000000..d586f5a
Binary files /dev/null and b/Projekt135570/Projekt/favicon.ico differ
diff --git a/Projekt135570/Projekt/images/backgrounds/background.png b/Projekt135570/Projekt/images/backgrounds/background.png
new file mode 100644
index 0000000..57b9a61
Binary files /dev/null and b/Projekt135570/Projekt/images/backgrounds/background.png differ
diff --git a/Projekt135570/Projekt/images/backgrounds/startbackground.png b/Projekt135570/Projekt/images/backgrounds/startbackground.png
new file mode 100644
index 0000000..894b999
Binary files /dev/null and b/Projekt135570/Projekt/images/backgrounds/startbackground.png differ
diff --git a/Projekt135570/Projekt/images/champions/Amumu.png b/Projekt135570/Projekt/images/champions/Amumu.png
new file mode 100644
index 0000000..5d7187a
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Amumu.png differ
diff --git a/Projekt135570/Projekt/images/champions/Annie.png b/Projekt135570/Projekt/images/champions/Annie.png
new file mode 100644
index 0000000..ef790d7
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Annie.png differ
diff --git a/Projekt135570/Projekt/images/champions/Ashe.png b/Projekt135570/Projekt/images/champions/Ashe.png
new file mode 100644
index 0000000..536df80
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Ashe.png differ
diff --git a/Projekt135570/Projekt/images/champions/Blitzcrank.png b/Projekt135570/Projekt/images/champions/Blitzcrank.png
new file mode 100644
index 0000000..e1f8b6c
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Blitzcrank.png differ
diff --git a/Projekt135570/Projekt/images/champions/Caitlyn.png b/Projekt135570/Projekt/images/champions/Caitlyn.png
new file mode 100644
index 0000000..af58039
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Caitlyn.png differ
diff --git a/Projekt135570/Projekt/images/champions/Diana.png b/Projekt135570/Projekt/images/champions/Diana.png
new file mode 100644
index 0000000..9c26fb4
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Diana.png differ
diff --git a/Projekt135570/Projekt/images/champions/DrMundo.png b/Projekt135570/Projekt/images/champions/DrMundo.png
new file mode 100644
index 0000000..ae8fd25
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/DrMundo.png differ
diff --git a/Projekt135570/Projekt/images/champions/Ezreal.png b/Projekt135570/Projekt/images/champions/Ezreal.png
new file mode 100644
index 0000000..77b8b76
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Ezreal.png differ
diff --git a/Projekt135570/Projekt/images/champions/Garen.png b/Projekt135570/Projekt/images/champions/Garen.png
new file mode 100644
index 0000000..9b270dd
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Garen.png differ
diff --git a/Projekt135570/Projekt/images/champions/Janna.png b/Projekt135570/Projekt/images/champions/Janna.png
new file mode 100644
index 0000000..1bd3821
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Janna.png differ
diff --git a/Projekt135570/Projekt/images/champions/Leona.png b/Projekt135570/Projekt/images/champions/Leona.png
new file mode 100644
index 0000000..ba20131
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Leona.png differ
diff --git a/Projekt135570/Projekt/images/champions/Lux.png b/Projekt135570/Projekt/images/champions/Lux.png
new file mode 100644
index 0000000..5bfb50d
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Lux.png differ
diff --git a/Projekt135570/Projekt/images/champions/Malphite.png b/Projekt135570/Projekt/images/champions/Malphite.png
new file mode 100644
index 0000000..d19a7e9
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Malphite.png differ
diff --git a/Projekt135570/Projekt/images/champions/Malzahar.png b/Projekt135570/Projekt/images/champions/Malzahar.png
new file mode 100644
index 0000000..a8024f1
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Malzahar.png differ
diff --git a/Projekt135570/Projekt/images/champions/Maokai.png b/Projekt135570/Projekt/images/champions/Maokai.png
new file mode 100644
index 0000000..2f99a86
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Maokai.png differ
diff --git a/Projekt135570/Projekt/images/champions/MasterYi.png b/Projekt135570/Projekt/images/champions/MasterYi.png
new file mode 100644
index 0000000..2e203a8
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/MasterYi.png differ
diff --git a/Projekt135570/Projekt/images/champions/MissFortune.png b/Projekt135570/Projekt/images/champions/MissFortune.png
new file mode 100644
index 0000000..9eea542
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/MissFortune.png differ
diff --git a/Projekt135570/Projekt/images/champions/Morgana.png b/Projekt135570/Projekt/images/champions/Morgana.png
new file mode 100644
index 0000000..390e1d4
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Morgana.png differ
diff --git a/Projekt135570/Projekt/images/champions/Nasus.png b/Projekt135570/Projekt/images/champions/Nasus.png
new file mode 100644
index 0000000..e9c7e95
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Nasus.png differ
diff --git a/Projekt135570/Projekt/images/champions/Neeko.png b/Projekt135570/Projekt/images/champions/Neeko.png
new file mode 100644
index 0000000..4aa4aeb
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Neeko.png differ
diff --git a/Projekt135570/Projekt/images/champions/Shyvana.png b/Projekt135570/Projekt/images/champions/Shyvana.png
new file mode 100644
index 0000000..1f8b85c
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Shyvana.png differ
diff --git a/Projekt135570/Projekt/images/champions/Skarner.png b/Projekt135570/Projekt/images/champions/Skarner.png
new file mode 100644
index 0000000..0f43b8f
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Skarner.png differ
diff --git a/Projekt135570/Projekt/images/champions/Soraka.png b/Projekt135570/Projekt/images/champions/Soraka.png
new file mode 100644
index 0000000..4ff8851
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Soraka.png differ
diff --git a/Projekt135570/Projekt/images/champions/Tristana.png b/Projekt135570/Projekt/images/champions/Tristana.png
new file mode 100644
index 0000000..dc57ad1
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Tristana.png differ
diff --git a/Projekt135570/Projekt/images/champions/Volibear.png b/Projekt135570/Projekt/images/champions/Volibear.png
new file mode 100644
index 0000000..916be19
Binary files /dev/null and b/Projekt135570/Projekt/images/champions/Volibear.png differ
diff --git a/Projekt135570/Projekt/images/items/Abyssal.png b/Projekt135570/Projekt/images/items/Abyssal.png
new file mode 100644
index 0000000..bae4a80
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Abyssal.png differ
diff --git a/Projekt135570/Projekt/images/items/Ardent.png b/Projekt135570/Projekt/images/items/Ardent.png
new file mode 100644
index 0000000..97c87da
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Ardent.png differ
diff --git a/Projekt135570/Projekt/images/items/Athene.png b/Projekt135570/Projekt/images/items/Athene.png
new file mode 100644
index 0000000..dfce8ff
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Athene.png differ
diff --git a/Projekt135570/Projekt/images/items/Berserker.png b/Projekt135570/Projekt/images/items/Berserker.png
new file mode 100644
index 0000000..5eeb898
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Berserker.png differ
diff --git a/Projekt135570/Projekt/images/items/Bloodrazor.png b/Projekt135570/Projekt/images/items/Bloodrazor.png
new file mode 100644
index 0000000..3344a0e
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Bloodrazor.png differ
diff --git a/Projekt135570/Projekt/images/items/Botrk.png b/Projekt135570/Projekt/images/items/Botrk.png
new file mode 100644
index 0000000..30fff7e
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Botrk.png differ
diff --git a/Projekt135570/Projekt/images/items/Cinderhulk.png b/Projekt135570/Projekt/images/items/Cinderhulk.png
new file mode 100644
index 0000000..a103925
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Cinderhulk.png differ
diff --git a/Projekt135570/Projekt/images/items/DMP.png b/Projekt135570/Projekt/images/items/DMP.png
new file mode 100644
index 0000000..f07427f
Binary files /dev/null and b/Projekt135570/Projekt/images/items/DMP.png differ
diff --git a/Projekt135570/Projekt/images/items/Echo.png b/Projekt135570/Projekt/images/items/Echo.png
new file mode 100644
index 0000000..77bcf78
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Echo.png differ
diff --git a/Projekt135570/Projekt/images/items/Essence.png b/Projekt135570/Projekt/images/items/Essence.png
new file mode 100644
index 0000000..cad6dc1
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Essence.png differ
diff --git a/Projekt135570/Projekt/images/items/GA.png b/Projekt135570/Projekt/images/items/GA.png
new file mode 100644
index 0000000..bc2a5ae
Binary files /dev/null and b/Projekt135570/Projekt/images/items/GA.png differ
diff --git a/Projekt135570/Projekt/images/items/GLP.png b/Projekt135570/Projekt/images/items/GLP.png
new file mode 100644
index 0000000..890ec36
Binary files /dev/null and b/Projekt135570/Projekt/images/items/GLP.png differ
diff --git a/Projekt135570/Projekt/images/items/Gargoyle.png b/Projekt135570/Projekt/images/items/Gargoyle.png
new file mode 100644
index 0000000..4672e66
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Gargoyle.png differ
diff --git a/Projekt135570/Projekt/images/items/Guinsoo.png b/Projekt135570/Projekt/images/items/Guinsoo.png
new file mode 100644
index 0000000..eb9f557
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Guinsoo.png differ
diff --git a/Projekt135570/Projekt/images/items/IE.png b/Projekt135570/Projekt/images/items/IE.png
new file mode 100644
index 0000000..e6c13c7
Binary files /dev/null and b/Projekt135570/Projekt/images/items/IE.png differ
diff --git a/Projekt135570/Projekt/images/items/Ionian.png b/Projekt135570/Projekt/images/items/Ionian.png
new file mode 100644
index 0000000..f2f2327
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Ionian.png differ
diff --git a/Projekt135570/Projekt/images/items/Liandry.png b/Projekt135570/Projekt/images/items/Liandry.png
new file mode 100644
index 0000000..6f0495f
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Liandry.png differ
diff --git a/Projekt135570/Projekt/images/items/Manamune.png b/Projekt135570/Projekt/images/items/Manamune.png
new file mode 100644
index 0000000..7adbd3f
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Manamune.png differ
diff --git a/Projekt135570/Projekt/images/items/Mercury.png b/Projekt135570/Projekt/images/items/Mercury.png
new file mode 100644
index 0000000..8e2453e
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Mercury.png differ
diff --git a/Projekt135570/Projekt/images/items/Mobility.png b/Projekt135570/Projekt/images/items/Mobility.png
new file mode 100644
index 0000000..4dc16e1
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Mobility.png differ
diff --git a/Projekt135570/Projekt/images/items/Morello.png b/Projekt135570/Projekt/images/items/Morello.png
new file mode 100644
index 0000000..9ab5d22
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Morello.png differ
diff --git a/Projekt135570/Projekt/images/items/Mortal.png b/Projekt135570/Projekt/images/items/Mortal.png
new file mode 100644
index 0000000..1dbd7d6
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Mortal.png differ
diff --git a/Projekt135570/Projekt/images/items/Nashor.png b/Projekt135570/Projekt/images/items/Nashor.png
new file mode 100644
index 0000000..6be42ed
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Nashor.png differ
diff --git a/Projekt135570/Projekt/images/items/Omen.png b/Projekt135570/Projekt/images/items/Omen.png
new file mode 100644
index 0000000..3dd3ee3
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Omen.png differ
diff --git a/Projekt135570/Projekt/images/items/PD.png b/Projekt135570/Projekt/images/items/PD.png
new file mode 100644
index 0000000..ede12cc
Binary files /dev/null and b/Projekt135570/Projekt/images/items/PD.png differ
diff --git a/Projekt135570/Projekt/images/items/RFC.png b/Projekt135570/Projekt/images/items/RFC.png
new file mode 100644
index 0000000..4236752
Binary files /dev/null and b/Projekt135570/Projekt/images/items/RFC.png differ
diff --git a/Projekt135570/Projekt/images/items/Rabadon.png b/Projekt135570/Projekt/images/items/Rabadon.png
new file mode 100644
index 0000000..383d1a6
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Rabadon.png differ
diff --git a/Projekt135570/Projekt/images/items/Redemption.png b/Projekt135570/Projekt/images/items/Redemption.png
new file mode 100644
index 0000000..5c9e0c9
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Redemption.png differ
diff --git a/Projekt135570/Projekt/images/items/RoA.png b/Projekt135570/Projekt/images/items/RoA.png
new file mode 100644
index 0000000..113c912
Binary files /dev/null and b/Projekt135570/Projekt/images/items/RoA.png differ
diff --git a/Projekt135570/Projekt/images/items/Runaan.png b/Projekt135570/Projekt/images/items/Runaan.png
new file mode 100644
index 0000000..41b7184
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Runaan.png differ
diff --git a/Projekt135570/Projekt/images/items/RunicEchoes.png b/Projekt135570/Projekt/images/items/RunicEchoes.png
new file mode 100644
index 0000000..643b73a
Binary files /dev/null and b/Projekt135570/Projekt/images/items/RunicEchoes.png differ
diff --git a/Projekt135570/Projekt/images/items/Rylai.png b/Projekt135570/Projekt/images/items/Rylai.png
new file mode 100644
index 0000000..8a3b0e4
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Rylai.png differ
diff --git a/Projekt135570/Projekt/images/items/Shadows.png b/Projekt135570/Projekt/images/items/Shadows.png
new file mode 100644
index 0000000..a9929ae
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Shadows.png differ
diff --git a/Projekt135570/Projekt/images/items/Shurelya.png b/Projekt135570/Projekt/images/items/Shurelya.png
new file mode 100644
index 0000000..56cd87f
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Shurelya.png differ
diff --git a/Projekt135570/Projekt/images/items/Solari.png b/Projekt135570/Projekt/images/items/Solari.png
new file mode 100644
index 0000000..d00a94b
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Solari.png differ
diff --git a/Projekt135570/Projekt/images/items/Sorce.png b/Projekt135570/Projekt/images/items/Sorce.png
new file mode 100644
index 0000000..8e2453e
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Sorce.png differ
diff --git a/Projekt135570/Projekt/images/items/Spirit.png b/Projekt135570/Projekt/images/items/Spirit.png
new file mode 100644
index 0000000..6f4f1f9
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Spirit.png differ
diff --git a/Projekt135570/Projekt/images/items/Sterak.png b/Projekt135570/Projekt/images/items/Sterak.png
new file mode 100644
index 0000000..e94c774
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Sterak.png differ
diff --git a/Projekt135570/Projekt/images/items/Storm.png b/Projekt135570/Projekt/images/items/Storm.png
new file mode 100644
index 0000000..1ff88ba
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Storm.png differ
diff --git a/Projekt135570/Projekt/images/items/Sunfire.png b/Projekt135570/Projekt/images/items/Sunfire.png
new file mode 100644
index 0000000..56c5655
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Sunfire.png differ
diff --git a/Projekt135570/Projekt/images/items/Tabi.png b/Projekt135570/Projekt/images/items/Tabi.png
new file mode 100644
index 0000000..555a697
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Tabi.png differ
diff --git a/Projekt135570/Projekt/images/items/Thornmail.png b/Projekt135570/Projekt/images/items/Thornmail.png
new file mode 100644
index 0000000..71306a1
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Thornmail.png differ
diff --git a/Projekt135570/Projekt/images/items/Trinity.png b/Projekt135570/Projekt/images/items/Trinity.png
new file mode 100644
index 0000000..849e053
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Trinity.png differ
diff --git a/Projekt135570/Projekt/images/items/Void.png b/Projekt135570/Projekt/images/items/Void.png
new file mode 100644
index 0000000..ef85271
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Void.png differ
diff --git a/Projekt135570/Projekt/images/items/Vow.png b/Projekt135570/Projekt/images/items/Vow.png
new file mode 100644
index 0000000..ca62564
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Vow.png differ
diff --git a/Projekt135570/Projekt/images/items/Warmog.png b/Projekt135570/Projekt/images/items/Warmog.png
new file mode 100644
index 0000000..aca33de
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Warmog.png differ
diff --git a/Projekt135570/Projekt/images/items/Warrior.png b/Projekt135570/Projekt/images/items/Warrior.png
new file mode 100644
index 0000000..e267764
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Warrior.png differ
diff --git a/Projekt135570/Projekt/images/items/WitsEnd.png b/Projekt135570/Projekt/images/items/WitsEnd.png
new file mode 100644
index 0000000..7c978f5
Binary files /dev/null and b/Projekt135570/Projekt/images/items/WitsEnd.png differ
diff --git a/Projekt135570/Projekt/images/items/Zeke.png b/Projekt135570/Projekt/images/items/Zeke.png
new file mode 100644
index 0000000..9458aab
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Zeke.png differ
diff --git a/Projekt135570/Projekt/images/items/Zhonya.png b/Projekt135570/Projekt/images/items/Zhonya.png
new file mode 100644
index 0000000..c8929f7
Binary files /dev/null and b/Projekt135570/Projekt/images/items/Zhonya.png differ
diff --git a/Projekt135570/Projekt/images/roles/adc.png b/Projekt135570/Projekt/images/roles/adc.png
new file mode 100644
index 0000000..c49002d
Binary files /dev/null and b/Projekt135570/Projekt/images/roles/adc.png differ
diff --git a/Projekt135570/Projekt/images/roles/jungle.png b/Projekt135570/Projekt/images/roles/jungle.png
new file mode 100644
index 0000000..88daaf6
Binary files /dev/null and b/Projekt135570/Projekt/images/roles/jungle.png differ
diff --git a/Projekt135570/Projekt/images/roles/mid.png b/Projekt135570/Projekt/images/roles/mid.png
new file mode 100644
index 0000000..c16810c
Binary files /dev/null and b/Projekt135570/Projekt/images/roles/mid.png differ
diff --git a/Projekt135570/Projekt/images/roles/support.png b/Projekt135570/Projekt/images/roles/support.png
new file mode 100644
index 0000000..724f6c8
Binary files /dev/null and b/Projekt135570/Projekt/images/roles/support.png differ
diff --git a/Projekt135570/Projekt/images/roles/top.png b/Projekt135570/Projekt/images/roles/top.png
new file mode 100644
index 0000000..fa923fc
Binary files /dev/null and b/Projekt135570/Projekt/images/roles/top.png differ
diff --git a/Projekt135570/Projekt/images/runes/Amumu.png b/Projekt135570/Projekt/images/runes/Amumu.png
new file mode 100644
index 0000000..ef4fa03
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Amumu.png differ
diff --git a/Projekt135570/Projekt/images/runes/Annie.PNG b/Projekt135570/Projekt/images/runes/Annie.PNG
new file mode 100644
index 0000000..d5317c6
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Annie.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Ashe.png b/Projekt135570/Projekt/images/runes/Ashe.png
new file mode 100644
index 0000000..78f0717
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Ashe.png differ
diff --git a/Projekt135570/Projekt/images/runes/Blitzcrank.PNG b/Projekt135570/Projekt/images/runes/Blitzcrank.PNG
new file mode 100644
index 0000000..0186fa1
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Blitzcrank.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Caitlyn.png b/Projekt135570/Projekt/images/runes/Caitlyn.png
new file mode 100644
index 0000000..5e23819
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Caitlyn.png differ
diff --git a/Projekt135570/Projekt/images/runes/Diana.png b/Projekt135570/Projekt/images/runes/Diana.png
new file mode 100644
index 0000000..80ea26d
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Diana.png differ
diff --git a/Projekt135570/Projekt/images/runes/DrMundo.PNG b/Projekt135570/Projekt/images/runes/DrMundo.PNG
new file mode 100644
index 0000000..5160f73
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/DrMundo.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Ezreal.png b/Projekt135570/Projekt/images/runes/Ezreal.png
new file mode 100644
index 0000000..4fd1250
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Ezreal.png differ
diff --git a/Projekt135570/Projekt/images/runes/Garen.PNG b/Projekt135570/Projekt/images/runes/Garen.PNG
new file mode 100644
index 0000000..1a4a735
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Garen.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Janna.png b/Projekt135570/Projekt/images/runes/Janna.png
new file mode 100644
index 0000000..58093b6
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Janna.png differ
diff --git a/Projekt135570/Projekt/images/runes/Leona.PNG b/Projekt135570/Projekt/images/runes/Leona.PNG
new file mode 100644
index 0000000..2392534
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Leona.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Lux.PNG b/Projekt135570/Projekt/images/runes/Lux.PNG
new file mode 100644
index 0000000..fe8c5f5
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Lux.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Malphite.PNG b/Projekt135570/Projekt/images/runes/Malphite.PNG
new file mode 100644
index 0000000..299aa61
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Malphite.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Malzahar.png b/Projekt135570/Projekt/images/runes/Malzahar.png
new file mode 100644
index 0000000..cec340f
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Malzahar.png differ
diff --git a/Projekt135570/Projekt/images/runes/Maokai.PNG b/Projekt135570/Projekt/images/runes/Maokai.PNG
new file mode 100644
index 0000000..8def8ce
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Maokai.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/MasterYi.png b/Projekt135570/Projekt/images/runes/MasterYi.png
new file mode 100644
index 0000000..d09c648
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/MasterYi.png differ
diff --git a/Projekt135570/Projekt/images/runes/MissFortune.PNG b/Projekt135570/Projekt/images/runes/MissFortune.PNG
new file mode 100644
index 0000000..ddd9829
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/MissFortune.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Morgana.PNG b/Projekt135570/Projekt/images/runes/Morgana.PNG
new file mode 100644
index 0000000..e76e4d9
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Morgana.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Nasus.PNG b/Projekt135570/Projekt/images/runes/Nasus.PNG
new file mode 100644
index 0000000..22fee9e
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Nasus.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Neeko.png b/Projekt135570/Projekt/images/runes/Neeko.png
new file mode 100644
index 0000000..3ccba64
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Neeko.png differ
diff --git a/Projekt135570/Projekt/images/runes/Shyvana.png b/Projekt135570/Projekt/images/runes/Shyvana.png
new file mode 100644
index 0000000..b32b2e0
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Shyvana.png differ
diff --git a/Projekt135570/Projekt/images/runes/Skarner.PNG b/Projekt135570/Projekt/images/runes/Skarner.PNG
new file mode 100644
index 0000000..e658179
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Skarner.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Soraka.PNG b/Projekt135570/Projekt/images/runes/Soraka.PNG
new file mode 100644
index 0000000..c40d66b
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Soraka.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Tristana.PNG b/Projekt135570/Projekt/images/runes/Tristana.PNG
new file mode 100644
index 0000000..3271b22
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Tristana.PNG differ
diff --git a/Projekt135570/Projekt/images/runes/Volibear.PNG b/Projekt135570/Projekt/images/runes/Volibear.PNG
new file mode 100644
index 0000000..7316430
Binary files /dev/null and b/Projekt135570/Projekt/images/runes/Volibear.PNG differ
diff --git a/Projekt135570/Projekt/obj/Debug/Amumu.baml b/Projekt135570/Projekt/obj/Debug/Amumu.baml
new file mode 100644
index 0000000..d0a580c
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Amumu.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Amumu.g.cs b/Projekt135570/Projekt/obj/Debug/Amumu.g.cs
new file mode 100644
index 0000000..23244c1
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Amumu.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Amumu.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "951E3F774F33587469E4447D5346402160DE1CEFCF8915AF7D859DD643012CCC"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Amumu
+ ///
+ public partial class Amumu : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/amumu.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Amumu.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Amumu.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Amumu.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Amumu.g.i.cs b/Projekt135570/Projekt/obj/Debug/Amumu.g.i.cs
new file mode 100644
index 0000000..23244c1
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Amumu.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Amumu.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "951E3F774F33587469E4447D5346402160DE1CEFCF8915AF7D859DD643012CCC"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Amumu
+ ///
+ public partial class Amumu : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/amumu.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Amumu.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Amumu.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Amumu.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Annie.baml b/Projekt135570/Projekt/obj/Debug/Annie.baml
new file mode 100644
index 0000000..4fa40c2
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Annie.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Annie.g.cs b/Projekt135570/Projekt/obj/Debug/Annie.g.cs
new file mode 100644
index 0000000..2425876
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Annie.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Annie.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9385518853304C9DF90859192BBF22EAA68698AD12D8C7A75A17029B536149A0"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Annie
+ ///
+ public partial class Annie : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/annie.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Annie.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Annie.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Annie.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Annie.g.i.cs b/Projekt135570/Projekt/obj/Debug/Annie.g.i.cs
new file mode 100644
index 0000000..2425876
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Annie.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Annie.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9385518853304C9DF90859192BBF22EAA68698AD12D8C7A75A17029B536149A0"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Annie
+ ///
+ public partial class Annie : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/annie.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Annie.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Annie.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Annie.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/App.g.cs b/Projekt135570/Projekt/obj/Debug/App.g.cs
new file mode 100644
index 0000000..b43bc7b
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/App.g.cs
@@ -0,0 +1,70 @@
+#pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "60A375A23812B316F90951AF2ADCA0731CB224B46359077F7FEAEF1F928D8384"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public static void Main() {
+ Projekt.App app = new Projekt.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/App.g.i.cs b/Projekt135570/Projekt/obj/Debug/App.g.i.cs
new file mode 100644
index 0000000..b43bc7b
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/App.g.i.cs
@@ -0,0 +1,70 @@
+#pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "60A375A23812B316F90951AF2ADCA0731CB224B46359077F7FEAEF1F928D8384"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public static void Main() {
+ Projekt.App app = new Projekt.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Ashe.baml b/Projekt135570/Projekt/obj/Debug/Ashe.baml
new file mode 100644
index 0000000..fcc1e6e
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Ashe.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Ashe.g.cs b/Projekt135570/Projekt/obj/Debug/Ashe.g.cs
new file mode 100644
index 0000000..925c4f6
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Ashe.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Ashe.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F143059E2AD04CD3EE2ED6F4F2E8124EB24C17F4E786FD9CCBAD76962C7E3CCC"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Ashe
+ ///
+ public partial class Ashe : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/ashe.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Ashe.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Ashe.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Ashe.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Ashe.g.i.cs b/Projekt135570/Projekt/obj/Debug/Ashe.g.i.cs
new file mode 100644
index 0000000..925c4f6
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Ashe.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Ashe.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F143059E2AD04CD3EE2ED6F4F2E8124EB24C17F4E786FD9CCBAD76962C7E3CCC"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Ashe
+ ///
+ public partial class Ashe : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/ashe.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Ashe.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Ashe.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Ashe.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Blitzcrank.baml b/Projekt135570/Projekt/obj/Debug/Blitzcrank.baml
new file mode 100644
index 0000000..132bba7
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Blitzcrank.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Blitzcrank.g.cs b/Projekt135570/Projekt/obj/Debug/Blitzcrank.g.cs
new file mode 100644
index 0000000..5bb0634
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Blitzcrank.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Blitzcrank.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "351A1E44EFED291CE3E7CFDD2BC3FD6F2999C43CF24AEE6740B1C6F6B01896E2"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Blitzcrank
+ ///
+ public partial class Blitzcrank : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/blitzcrank.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Blitzcrank.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Blitzcrank.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Blitzcrank.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Blitzcrank.g.i.cs b/Projekt135570/Projekt/obj/Debug/Blitzcrank.g.i.cs
new file mode 100644
index 0000000..5bb0634
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Blitzcrank.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Blitzcrank.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "351A1E44EFED291CE3E7CFDD2BC3FD6F2999C43CF24AEE6740B1C6F6B01896E2"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Blitzcrank
+ ///
+ public partial class Blitzcrank : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/blitzcrank.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Blitzcrank.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Blitzcrank.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Blitzcrank.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Caitlyn.baml b/Projekt135570/Projekt/obj/Debug/Caitlyn.baml
new file mode 100644
index 0000000..e3e8e0e
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Caitlyn.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Caitlyn.g.cs b/Projekt135570/Projekt/obj/Debug/Caitlyn.g.cs
new file mode 100644
index 0000000..b54d3a6
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Caitlyn.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Caitlyn.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "0C846F4424108EFD6ED277FAFB2F5380D9CA2A7BA6211C3A7B1748194DA014F9"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Caitlyn
+ ///
+ public partial class Caitlyn : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/caitlyn.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Caitlyn.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Caitlyn.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Caitlyn.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Caitlyn.g.i.cs b/Projekt135570/Projekt/obj/Debug/Caitlyn.g.i.cs
new file mode 100644
index 0000000..b54d3a6
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Caitlyn.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Caitlyn.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "0C846F4424108EFD6ED277FAFB2F5380D9CA2A7BA6211C3A7B1748194DA014F9"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Caitlyn
+ ///
+ public partial class Caitlyn : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/caitlyn.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Caitlyn.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Caitlyn.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Caitlyn.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Champions.baml b/Projekt135570/Projekt/obj/Debug/Champions.baml
new file mode 100644
index 0000000..3cc67a5
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Champions.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Champions.g.cs b/Projekt135570/Projekt/obj/Debug/Champions.g.cs
new file mode 100644
index 0000000..80daa88
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Champions.g.cs
@@ -0,0 +1,286 @@
+#pragma checksum "..\..\Champions.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9B146B91F53A08A0E87088A36650B5F9C5EBC6CB7490DE4D05E90758EDF7B64F"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Champions
+ ///
+ public partial class Champions : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/champions.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Champions.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 10 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToMenu);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 16 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MalphiteClick);
+
+ #line default
+ #line hidden
+ return;
+ case 3:
+
+ #line 22 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MaokaiClick);
+
+ #line default
+ #line hidden
+ return;
+ case 4:
+
+ #line 29 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.GarenClick);
+
+ #line default
+ #line hidden
+ return;
+ case 5:
+
+ #line 36 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.DrMundoClick);
+
+ #line default
+ #line hidden
+ return;
+ case 6:
+
+ #line 43 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NasusClick);
+
+ #line default
+ #line hidden
+ return;
+ case 7:
+
+ #line 54 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.VolibearClick);
+
+ #line default
+ #line hidden
+ return;
+ case 8:
+
+ #line 60 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MasterYiClick);
+
+ #line default
+ #line hidden
+ return;
+ case 9:
+
+ #line 67 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SkarnerClick);
+
+ #line default
+ #line hidden
+ return;
+ case 10:
+
+ #line 74 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ShyvanaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 11:
+
+ #line 81 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AmumuClick);
+
+ #line default
+ #line hidden
+ return;
+ case 12:
+
+ #line 93 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.DianaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 13:
+
+ #line 99 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AnnieClick);
+
+ #line default
+ #line hidden
+ return;
+ case 14:
+
+ #line 106 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.LuxClick);
+
+ #line default
+ #line hidden
+ return;
+ case 15:
+
+ #line 113 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MalzaharClick);
+
+ #line default
+ #line hidden
+ return;
+ case 16:
+
+ #line 120 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NeekoClick);
+
+ #line default
+ #line hidden
+ return;
+ case 17:
+
+ #line 132 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MissFortuneClick);
+
+ #line default
+ #line hidden
+ return;
+ case 18:
+
+ #line 138 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AsheClick);
+
+ #line default
+ #line hidden
+ return;
+ case 19:
+
+ #line 145 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.CaitlynClick);
+
+ #line default
+ #line hidden
+ return;
+ case 20:
+
+ #line 152 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.TristanaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 21:
+
+ #line 159 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.EzrealClick);
+
+ #line default
+ #line hidden
+ return;
+ case 22:
+
+ #line 171 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SorakaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 23:
+
+ #line 177 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.JannaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 24:
+
+ #line 184 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.LeonaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 25:
+
+ #line 191 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BlitzcrankClick);
+
+ #line default
+ #line hidden
+ return;
+ case 26:
+
+ #line 198 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MorganaClick);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Champions.g.i.cs b/Projekt135570/Projekt/obj/Debug/Champions.g.i.cs
new file mode 100644
index 0000000..80daa88
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Champions.g.i.cs
@@ -0,0 +1,286 @@
+#pragma checksum "..\..\Champions.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9B146B91F53A08A0E87088A36650B5F9C5EBC6CB7490DE4D05E90758EDF7B64F"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Champions
+ ///
+ public partial class Champions : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/champions.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Champions.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 10 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToMenu);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 16 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MalphiteClick);
+
+ #line default
+ #line hidden
+ return;
+ case 3:
+
+ #line 22 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MaokaiClick);
+
+ #line default
+ #line hidden
+ return;
+ case 4:
+
+ #line 29 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.GarenClick);
+
+ #line default
+ #line hidden
+ return;
+ case 5:
+
+ #line 36 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.DrMundoClick);
+
+ #line default
+ #line hidden
+ return;
+ case 6:
+
+ #line 43 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NasusClick);
+
+ #line default
+ #line hidden
+ return;
+ case 7:
+
+ #line 54 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.VolibearClick);
+
+ #line default
+ #line hidden
+ return;
+ case 8:
+
+ #line 60 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MasterYiClick);
+
+ #line default
+ #line hidden
+ return;
+ case 9:
+
+ #line 67 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SkarnerClick);
+
+ #line default
+ #line hidden
+ return;
+ case 10:
+
+ #line 74 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.ShyvanaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 11:
+
+ #line 81 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AmumuClick);
+
+ #line default
+ #line hidden
+ return;
+ case 12:
+
+ #line 93 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.DianaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 13:
+
+ #line 99 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AnnieClick);
+
+ #line default
+ #line hidden
+ return;
+ case 14:
+
+ #line 106 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.LuxClick);
+
+ #line default
+ #line hidden
+ return;
+ case 15:
+
+ #line 113 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MalzaharClick);
+
+ #line default
+ #line hidden
+ return;
+ case 16:
+
+ #line 120 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.NeekoClick);
+
+ #line default
+ #line hidden
+ return;
+ case 17:
+
+ #line 132 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MissFortuneClick);
+
+ #line default
+ #line hidden
+ return;
+ case 18:
+
+ #line 138 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.AsheClick);
+
+ #line default
+ #line hidden
+ return;
+ case 19:
+
+ #line 145 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.CaitlynClick);
+
+ #line default
+ #line hidden
+ return;
+ case 20:
+
+ #line 152 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.TristanaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 21:
+
+ #line 159 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.EzrealClick);
+
+ #line default
+ #line hidden
+ return;
+ case 22:
+
+ #line 171 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.SorakaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 23:
+
+ #line 177 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.JannaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 24:
+
+ #line 184 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.LeonaClick);
+
+ #line default
+ #line hidden
+ return;
+ case 25:
+
+ #line 191 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.BlitzcrankClick);
+
+ #line default
+ #line hidden
+ return;
+ case 26:
+
+ #line 198 "..\..\Champions.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MorganaClick);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Credits.baml b/Projekt135570/Projekt/obj/Debug/Credits.baml
new file mode 100644
index 0000000..c0d5167
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Credits.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Credits.g.cs b/Projekt135570/Projekt/obj/Debug/Credits.g.cs
new file mode 100644
index 0000000..8c069b1
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Credits.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Credits.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "D25FABDE9A00C897AB615F75BCEC2D4E92996C491AD4EEA716C2AF4C14EE7367"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Credits
+ ///
+ public partial class Credits : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/credits.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Credits.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 10 "..\..\Credits.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToMenu);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 15 "..\..\Credits.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Credits.g.i.cs b/Projekt135570/Projekt/obj/Debug/Credits.g.i.cs
new file mode 100644
index 0000000..8c069b1
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Credits.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Credits.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "D25FABDE9A00C897AB615F75BCEC2D4E92996C491AD4EEA716C2AF4C14EE7367"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Credits
+ ///
+ public partial class Credits : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/credits.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Credits.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 10 "..\..\Credits.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToMenu);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 15 "..\..\Credits.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Projekt135570/Projekt/obj/Debug/DesignTimeResolveAssemblyReferences.cache
new file mode 100644
index 0000000..16fded3
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ
diff --git a/Projekt135570/Projekt/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Projekt135570/Projekt/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
new file mode 100644
index 0000000..88af56b
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ
diff --git a/Projekt135570/Projekt/obj/Debug/Diana.baml b/Projekt135570/Projekt/obj/Debug/Diana.baml
new file mode 100644
index 0000000..5f73abe
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Diana.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Diana.g.cs b/Projekt135570/Projekt/obj/Debug/Diana.g.cs
new file mode 100644
index 0000000..959f3c3
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Diana.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Diana.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B6B23AE9713C2A731CABBF816B65EDC4CE02B68EDEF18233F5582BFD6C991D36"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Diana
+ ///
+ public partial class Diana : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/diana.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Diana.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Diana.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Diana.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Diana.g.i.cs b/Projekt135570/Projekt/obj/Debug/Diana.g.i.cs
new file mode 100644
index 0000000..959f3c3
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Diana.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Diana.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B6B23AE9713C2A731CABBF816B65EDC4CE02B68EDEF18233F5582BFD6C991D36"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Diana
+ ///
+ public partial class Diana : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/diana.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Diana.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Diana.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Diana.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/DrMundo.baml b/Projekt135570/Projekt/obj/Debug/DrMundo.baml
new file mode 100644
index 0000000..737d106
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/DrMundo.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/DrMundo.g.cs b/Projekt135570/Projekt/obj/Debug/DrMundo.g.cs
new file mode 100644
index 0000000..5217da2
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/DrMundo.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\DrMundo.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B152D253ACC8F7F7530CA01685DBA516958537AF2CDE15DEAF45A1D6C8D6707C"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// DrMundo
+ ///
+ public partial class DrMundo : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/drmundo.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\DrMundo.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\DrMundo.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\DrMundo.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/DrMundo.g.i.cs b/Projekt135570/Projekt/obj/Debug/DrMundo.g.i.cs
new file mode 100644
index 0000000..5217da2
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/DrMundo.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\DrMundo.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B152D253ACC8F7F7530CA01685DBA516958537AF2CDE15DEAF45A1D6C8D6707C"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// DrMundo
+ ///
+ public partial class DrMundo : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/drmundo.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\DrMundo.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\DrMundo.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\DrMundo.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Ezreal.baml b/Projekt135570/Projekt/obj/Debug/Ezreal.baml
new file mode 100644
index 0000000..29a59a4
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Ezreal.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Ezreal.g.cs b/Projekt135570/Projekt/obj/Debug/Ezreal.g.cs
new file mode 100644
index 0000000..3f7e9f6
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Ezreal.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Ezreal.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "10EDC05992283C28CC2DAC88D511DA0F99E520521694B1EA602BCB87255E4BF8"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Ezreal
+ ///
+ public partial class Ezreal : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/ezreal.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Ezreal.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Ezreal.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Ezreal.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Ezreal.g.i.cs b/Projekt135570/Projekt/obj/Debug/Ezreal.g.i.cs
new file mode 100644
index 0000000..3f7e9f6
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Ezreal.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Ezreal.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "10EDC05992283C28CC2DAC88D511DA0F99E520521694B1EA602BCB87255E4BF8"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Ezreal
+ ///
+ public partial class Ezreal : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/ezreal.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Ezreal.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Ezreal.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Ezreal.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Garen.baml b/Projekt135570/Projekt/obj/Debug/Garen.baml
new file mode 100644
index 0000000..2640a99
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Garen.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Garen.g.cs b/Projekt135570/Projekt/obj/Debug/Garen.g.cs
new file mode 100644
index 0000000..d356b8b
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Garen.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Garen.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "1B72A92128962C2A4D57C628A37D11D20638F56A9EE438A8253D45DA507DE663"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Garen
+ ///
+ public partial class Garen : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/garen.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Garen.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Garen.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Garen.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Garen.g.i.cs b/Projekt135570/Projekt/obj/Debug/Garen.g.i.cs
new file mode 100644
index 0000000..d356b8b
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Garen.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Garen.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "1B72A92128962C2A4D57C628A37D11D20638F56A9EE438A8253D45DA507DE663"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Garen
+ ///
+ public partial class Garen : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/garen.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Garen.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Garen.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Garen.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Information.baml b/Projekt135570/Projekt/obj/Debug/Information.baml
new file mode 100644
index 0000000..569ba87
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Information.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Information.g.cs b/Projekt135570/Projekt/obj/Debug/Information.g.cs
new file mode 100644
index 0000000..5cceced
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Information.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Information.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "7888EDA12A9BDA4F8A1FDD8E66CEA87E5C94482B710E360AC2CDE521DBB36796"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Information
+ ///
+ public partial class Information : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/information.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Information.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 10 "..\..\Information.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToMenu);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 13 "..\..\Information.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Information.g.i.cs b/Projekt135570/Projekt/obj/Debug/Information.g.i.cs
new file mode 100644
index 0000000..5cceced
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Information.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Information.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "7888EDA12A9BDA4F8A1FDD8E66CEA87E5C94482B710E360AC2CDE521DBB36796"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Information
+ ///
+ public partial class Information : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/information.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Information.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 10 "..\..\Information.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToMenu);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 13 "..\..\Information.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Informations.g.i.cs b/Projekt135570/Projekt/obj/Debug/Informations.g.i.cs
new file mode 100644
index 0000000..103afd0
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Informations.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Informations.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "912AC9FC58740905921E2D6B4D9A065EA084DF6124D84A5C57C8C4A2D5F39AC0"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Informations
+ ///
+ public partial class Informations : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/informations.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Informations.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 10 "..\..\Informations.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToMenu);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 13 "..\..\Informations.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Janna.baml b/Projekt135570/Projekt/obj/Debug/Janna.baml
new file mode 100644
index 0000000..a901d8a
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Janna.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Janna.g.cs b/Projekt135570/Projekt/obj/Debug/Janna.g.cs
new file mode 100644
index 0000000..2a8cd66
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Janna.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Janna.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E104C803E7ECEDEE8170C683CAF6340E5F5856F68C731BD5CD23517B20E60854"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Janna
+ ///
+ public partial class Janna : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/janna.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Janna.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Janna.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Janna.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Janna.g.i.cs b/Projekt135570/Projekt/obj/Debug/Janna.g.i.cs
new file mode 100644
index 0000000..2a8cd66
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Janna.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Janna.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E104C803E7ECEDEE8170C683CAF6340E5F5856F68C731BD5CD23517B20E60854"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Janna
+ ///
+ public partial class Janna : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/janna.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Janna.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Janna.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Janna.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Leona.baml b/Projekt135570/Projekt/obj/Debug/Leona.baml
new file mode 100644
index 0000000..955d1f8
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Leona.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Leona.g.cs b/Projekt135570/Projekt/obj/Debug/Leona.g.cs
new file mode 100644
index 0000000..b5ed5b8
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Leona.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Leona.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "00D2C390ACFE590E2BD48FD9D486304ED0E320DD2709DC29B4865BD9923C2DD2"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Leona
+ ///
+ public partial class Leona : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/leona.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Leona.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Leona.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Leona.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Leona.g.i.cs b/Projekt135570/Projekt/obj/Debug/Leona.g.i.cs
new file mode 100644
index 0000000..b5ed5b8
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Leona.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Leona.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "00D2C390ACFE590E2BD48FD9D486304ED0E320DD2709DC29B4865BD9923C2DD2"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Leona
+ ///
+ public partial class Leona : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/leona.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Leona.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Leona.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Leona.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Lux.baml b/Projekt135570/Projekt/obj/Debug/Lux.baml
new file mode 100644
index 0000000..c21004c
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Lux.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Lux.g.cs b/Projekt135570/Projekt/obj/Debug/Lux.g.cs
new file mode 100644
index 0000000..e1c3286
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Lux.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Lux.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "778036C0D034574BD925210277088782129A0273CF19E6C48543C31815320D52"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Lux
+ ///
+ public partial class Lux : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/lux.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Lux.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Lux.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Lux.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Lux.g.i.cs b/Projekt135570/Projekt/obj/Debug/Lux.g.i.cs
new file mode 100644
index 0000000..e1c3286
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Lux.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Lux.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "778036C0D034574BD925210277088782129A0273CF19E6C48543C31815320D52"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Lux
+ ///
+ public partial class Lux : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/lux.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Lux.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Lux.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Lux.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/MainWindow.baml b/Projekt135570/Projekt/obj/Debug/MainWindow.baml
new file mode 100644
index 0000000..66cc975
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/MainWindow.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/MainWindow.g.cs b/Projekt135570/Projekt/obj/Debug/MainWindow.g.cs
new file mode 100644
index 0000000..5fc438f
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/MainWindow.g.cs
@@ -0,0 +1,86 @@
+#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "8B7C45ACDBA2E2946BCEC6D52A46BA4A1D2B52AFA7A6A16A74A1D3B2F74C778F"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 12 "..\..\MainWindow.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToMenu);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/MainWindow.g.i.cs b/Projekt135570/Projekt/obj/Debug/MainWindow.g.i.cs
new file mode 100644
index 0000000..5fc438f
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/MainWindow.g.i.cs
@@ -0,0 +1,86 @@
+#pragma checksum "..\..\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "8B7C45ACDBA2E2946BCEC6D52A46BA4A1D2B52AFA7A6A16A74A1D3B2F74C778F"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 12 "..\..\MainWindow.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToMenu);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Malphite.baml b/Projekt135570/Projekt/obj/Debug/Malphite.baml
new file mode 100644
index 0000000..2e7034b
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Malphite.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Malphite.g.cs b/Projekt135570/Projekt/obj/Debug/Malphite.g.cs
new file mode 100644
index 0000000..f736116
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Malphite.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Malphite.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E672DDBFF3AF71DD91BFDC717B21FB4218658A9D18E07A456281829B89A35BF0"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Malphite
+ ///
+ public partial class Malphite : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/malphite.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Malphite.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Malphite.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Malphite.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Malphite.g.i.cs b/Projekt135570/Projekt/obj/Debug/Malphite.g.i.cs
new file mode 100644
index 0000000..f736116
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Malphite.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Malphite.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "E672DDBFF3AF71DD91BFDC717B21FB4218658A9D18E07A456281829B89A35BF0"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Malphite
+ ///
+ public partial class Malphite : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/malphite.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Malphite.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Malphite.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Malphite.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Malzahar.baml b/Projekt135570/Projekt/obj/Debug/Malzahar.baml
new file mode 100644
index 0000000..e97d133
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Malzahar.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Malzahar.g.cs b/Projekt135570/Projekt/obj/Debug/Malzahar.g.cs
new file mode 100644
index 0000000..9d28cea
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Malzahar.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Malzahar.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "50FB901D8F247B0C35442B5C8F73DBF3DA1C2FCC44CEF3187BD595E6CE54C510"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Malzahar
+ ///
+ public partial class Malzahar : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/malzahar.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Malzahar.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Malzahar.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Malzahar.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Malzahar.g.i.cs b/Projekt135570/Projekt/obj/Debug/Malzahar.g.i.cs
new file mode 100644
index 0000000..9d28cea
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Malzahar.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Malzahar.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "50FB901D8F247B0C35442B5C8F73DBF3DA1C2FCC44CEF3187BD595E6CE54C510"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Malzahar
+ ///
+ public partial class Malzahar : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/malzahar.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Malzahar.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Malzahar.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Malzahar.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Maokai.baml b/Projekt135570/Projekt/obj/Debug/Maokai.baml
new file mode 100644
index 0000000..2cebd87
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Maokai.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Maokai.g.cs b/Projekt135570/Projekt/obj/Debug/Maokai.g.cs
new file mode 100644
index 0000000..e669d93
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Maokai.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Maokai.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "843B864CB80AB7F36C60CC9509DE9734366EE3AFA7804D68F1414C1AD1795922"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Maokai
+ ///
+ public partial class Maokai : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/maokai.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Maokai.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Maokai.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Maokai.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Maokai.g.i.cs b/Projekt135570/Projekt/obj/Debug/Maokai.g.i.cs
new file mode 100644
index 0000000..e669d93
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Maokai.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Maokai.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "843B864CB80AB7F36C60CC9509DE9734366EE3AFA7804D68F1414C1AD1795922"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Maokai
+ ///
+ public partial class Maokai : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/maokai.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Maokai.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Maokai.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Maokai.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/MasterYi.baml b/Projekt135570/Projekt/obj/Debug/MasterYi.baml
new file mode 100644
index 0000000..b6f1a32
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/MasterYi.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/MasterYi.g.cs b/Projekt135570/Projekt/obj/Debug/MasterYi.g.cs
new file mode 100644
index 0000000..d61b2f0
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/MasterYi.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\MasterYi.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9E160B7FF9177A2507969CD26213ACACDA2BD63B91C519B80374409CF594482C"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// MasterYi
+ ///
+ public partial class MasterYi : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/masteryi.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MasterYi.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\MasterYi.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\MasterYi.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/MasterYi.g.i.cs b/Projekt135570/Projekt/obj/Debug/MasterYi.g.i.cs
new file mode 100644
index 0000000..d61b2f0
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/MasterYi.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\MasterYi.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9E160B7FF9177A2507969CD26213ACACDA2BD63B91C519B80374409CF594482C"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// MasterYi
+ ///
+ public partial class MasterYi : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/masteryi.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MasterYi.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\MasterYi.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\MasterYi.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Menu.baml b/Projekt135570/Projekt/obj/Debug/Menu.baml
new file mode 100644
index 0000000..0e92ad3
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Menu.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Menu.g.cs b/Projekt135570/Projekt/obj/Debug/Menu.g.cs
new file mode 100644
index 0000000..7f98545
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Menu.g.cs
@@ -0,0 +1,102 @@
+#pragma checksum "..\..\Menu.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "75AFB36C6FFC65590852E647A115CA4B00E968D336D7EA9AEF0D8BEA56F51E5A"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Menu
+ ///
+ public partial class Menu : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/menu.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Menu.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 10 "..\..\Menu.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 11 "..\..\Menu.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToInformation);
+
+ #line default
+ #line hidden
+ return;
+ case 3:
+
+ #line 12 "..\..\Menu.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToCredits);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Menu.g.i.cs b/Projekt135570/Projekt/obj/Debug/Menu.g.i.cs
new file mode 100644
index 0000000..7f98545
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Menu.g.i.cs
@@ -0,0 +1,102 @@
+#pragma checksum "..\..\Menu.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "75AFB36C6FFC65590852E647A115CA4B00E968D336D7EA9AEF0D8BEA56F51E5A"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Menu
+ ///
+ public partial class Menu : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/menu.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Menu.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 10 "..\..\Menu.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 11 "..\..\Menu.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToInformation);
+
+ #line default
+ #line hidden
+ return;
+ case 3:
+
+ #line 12 "..\..\Menu.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToCredits);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/MissFortune.baml b/Projekt135570/Projekt/obj/Debug/MissFortune.baml
new file mode 100644
index 0000000..f10c2df
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/MissFortune.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/MissFortune.g.cs b/Projekt135570/Projekt/obj/Debug/MissFortune.g.cs
new file mode 100644
index 0000000..25ff388
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/MissFortune.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\MissFortune.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "C0A78DDB70C2B518BD46880A11CA3EBB1EB1A317EA763004315B72AA11544FF9"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// MissFortune
+ ///
+ public partial class MissFortune : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/missfortune.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MissFortune.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\MissFortune.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\MissFortune.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/MissFortune.g.i.cs b/Projekt135570/Projekt/obj/Debug/MissFortune.g.i.cs
new file mode 100644
index 0000000..25ff388
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/MissFortune.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\MissFortune.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "C0A78DDB70C2B518BD46880A11CA3EBB1EB1A317EA763004315B72AA11544FF9"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// MissFortune
+ ///
+ public partial class MissFortune : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/missfortune.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MissFortune.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\MissFortune.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\MissFortune.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Morgana.baml b/Projekt135570/Projekt/obj/Debug/Morgana.baml
new file mode 100644
index 0000000..35a81b8
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Morgana.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Morgana.g.cs b/Projekt135570/Projekt/obj/Debug/Morgana.g.cs
new file mode 100644
index 0000000..da514aa
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Morgana.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Morgana.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "3CBD7DD11D3425F2858C6343D808A0763A98CD8B4EE95149F330B2692F1E7877"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Morgana
+ ///
+ public partial class Morgana : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/morgana.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Morgana.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Morgana.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Morgana.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Morgana.g.i.cs b/Projekt135570/Projekt/obj/Debug/Morgana.g.i.cs
new file mode 100644
index 0000000..da514aa
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Morgana.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Morgana.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "3CBD7DD11D3425F2858C6343D808A0763A98CD8B4EE95149F330B2692F1E7877"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Morgana
+ ///
+ public partial class Morgana : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/morgana.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Morgana.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Morgana.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Morgana.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Nasus.baml b/Projekt135570/Projekt/obj/Debug/Nasus.baml
new file mode 100644
index 0000000..5360f8d
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Nasus.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Nasus.g.cs b/Projekt135570/Projekt/obj/Debug/Nasus.g.cs
new file mode 100644
index 0000000..0a258e3
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Nasus.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Nasus.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "5F21284186666C3C2616C7B862BF2A63B6AF8E32A42BFE3151C6E260DFCA9B39"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Nasus
+ ///
+ public partial class Nasus : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/nasus.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Nasus.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Nasus.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Nasus.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Nasus.g.i.cs b/Projekt135570/Projekt/obj/Debug/Nasus.g.i.cs
new file mode 100644
index 0000000..0a258e3
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Nasus.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Nasus.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "5F21284186666C3C2616C7B862BF2A63B6AF8E32A42BFE3151C6E260DFCA9B39"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Nasus
+ ///
+ public partial class Nasus : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/nasus.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Nasus.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Nasus.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Nasus.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Neeko.baml b/Projekt135570/Projekt/obj/Debug/Neeko.baml
new file mode 100644
index 0000000..fb24e15
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Neeko.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Neeko.g.cs b/Projekt135570/Projekt/obj/Debug/Neeko.g.cs
new file mode 100644
index 0000000..cb8477a
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Neeko.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Neeko.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "0A45088ECD9EB0DEF146CF970C36E66A70AE256FB6847A4B1E635F5B860F5F30"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Neeko
+ ///
+ public partial class Neeko : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/neeko.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Neeko.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Neeko.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Neeko.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Neeko.g.i.cs b/Projekt135570/Projekt/obj/Debug/Neeko.g.i.cs
new file mode 100644
index 0000000..cb8477a
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Neeko.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Neeko.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "0A45088ECD9EB0DEF146CF970C36E66A70AE256FB6847A4B1E635F5B860F5F30"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Neeko
+ ///
+ public partial class Neeko : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/neeko.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Neeko.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Neeko.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Neeko.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt.Properties.Resources.resources b/Projekt135570/Projekt/obj/Debug/Projekt.Properties.Resources.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Projekt.Properties.Resources.resources differ
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt.csproj.FileListAbsolute.txt b/Projekt135570/Projekt/obj/Debug/Projekt.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..21fbff3
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Projekt.csproj.FileListAbsolute.txt
@@ -0,0 +1,72 @@
+C:\Users\F\source\repos\Projekt\obj\Debug\Projekt.csprojAssemblyReference.cache
+C:\Users\F\source\repos\Projekt\obj\Debug\Champions.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Credits.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\MainWindow.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Menu.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\App.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Projekt_MarkupCompile.cache
+C:\Users\F\source\repos\Projekt\obj\Debug\Projekt_MarkupCompile.lref
+C:\Users\F\source\repos\Projekt\obj\Debug\Malphite.g.cs
+C:\Users\F\source\repos\Projekt\bin\Debug\Projekt.exe.config
+C:\Users\F\source\repos\Projekt\bin\Debug\Projekt.exe
+C:\Users\F\source\repos\Projekt\bin\Debug\Projekt.pdb
+C:\Users\F\source\repos\Projekt\obj\Debug\Champions.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Credits.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\MainWindow.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Menu.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Malphite.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Projekt.g.resources
+C:\Users\F\source\repos\Projekt\obj\Debug\Projekt.Properties.Resources.resources
+C:\Users\F\source\repos\Projekt\obj\Debug\Projekt.csproj.GenerateResource.cache
+C:\Users\F\source\repos\Projekt\obj\Debug\Projekt.exe
+C:\Users\F\source\repos\Projekt\obj\Debug\Projekt.pdb
+C:\Users\F\source\repos\Projekt\obj\Debug\Amumu.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Annie.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Ashe.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Blitzcrank.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Caitlyn.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Diana.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\DrMundo.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Ezreal.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Garen.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Janna.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Leona.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Lux.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Malzahar.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Maokai.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\MasterYi.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\MissFortune.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Morgana.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Nasus.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Neeko.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Shyvana.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Skarner.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Soraka.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Tristana.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Volibear.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Amumu.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Annie.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Ashe.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Blitzcrank.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Caitlyn.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Diana.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\DrMundo.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Ezreal.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Garen.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Janna.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Leona.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Lux.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Malzahar.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Maokai.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\MasterYi.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\MissFortune.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Morgana.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Nasus.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Neeko.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Shyvana.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Skarner.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Soraka.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Tristana.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Volibear.baml
+C:\Users\F\source\repos\Projekt\obj\Debug\Information.g.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\Information.baml
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt.csproj.GenerateResource.cache b/Projekt135570/Projekt/obj/Debug/Projekt.csproj.GenerateResource.cache
new file mode 100644
index 0000000..99f17fe
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Projekt.csproj.GenerateResource.cache differ
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt.csprojAssemblyReference.cache b/Projekt135570/Projekt/obj/Debug/Projekt.csprojAssemblyReference.cache
new file mode 100644
index 0000000..08f18e6
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Projekt.csprojAssemblyReference.cache differ
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt.exe b/Projekt135570/Projekt/obj/Debug/Projekt.exe
new file mode 100644
index 0000000..5b4a4d9
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Projekt.exe differ
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt.g.resources b/Projekt135570/Projekt/obj/Debug/Projekt.g.resources
new file mode 100644
index 0000000..59b1672
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Projekt.g.resources differ
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt.pdb b/Projekt135570/Projekt/obj/Debug/Projekt.pdb
new file mode 100644
index 0000000..d8d4ec4
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Projekt.pdb differ
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt_Content.g.i.cs b/Projekt135570/Projekt/obj/Debug/Projekt_Content.g.i.cs
new file mode 100644
index 0000000..d6e3b98
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Projekt_Content.g.i.cs
@@ -0,0 +1,13 @@
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("favicon.ico")]
+
+
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.cache b/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.cache
new file mode 100644
index 0000000..00f1162
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.cache
@@ -0,0 +1,20 @@
+Projekt
+
+
+winexe
+C#
+.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\
+Projekt
+none
+false
+DEBUG;TRACE
+C:\Users\F\source\repos\Projekt\App.xaml
+302092349106
+
+34-26631396
+13-1505183044
+Amumu.xaml;Annie.xaml;Ashe.xaml;Blitzcrank.xaml;Caitlyn.xaml;Champions.xaml;Credits.xaml;Diana.xaml;DrMundo.xaml;Ezreal.xaml;Garen.xaml;Information.xaml;Janna.xaml;Leona.xaml;Lux.xaml;MainWindow.xaml;Malphite.xaml;Malzahar.xaml;Maokai.xaml;MasterYi.xaml;Menu.xaml;MissFortune.xaml;Morgana.xaml;Nasus.xaml;Neeko.xaml;Shyvana.xaml;Skarner.xaml;Soraka.xaml;Tristana.xaml;Volibear.xaml;
+
+False
+
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.i.cache b/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.i.cache
new file mode 100644
index 0000000..cb0f5fe
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.i.cache
@@ -0,0 +1,20 @@
+Projekt
+
+
+winexe
+C#
+.cs
+C:\Users\F\source\repos\Projekt\obj\Debug\
+Projekt
+none
+false
+DEBUG;TRACE
+C:\Users\F\source\repos\Projekt\App.xaml
+302092349106
+
+35-1516330195
+13-1505183044
+Amumu.xaml;Annie.xaml;Ashe.xaml;Blitzcrank.xaml;Caitlyn.xaml;Champions.xaml;Credits.xaml;Diana.xaml;DrMundo.xaml;Ezreal.xaml;Garen.xaml;Information.xaml;Janna.xaml;Leona.xaml;Lux.xaml;MainWindow.xaml;Malphite.xaml;Malzahar.xaml;Maokai.xaml;MasterYi.xaml;Menu.xaml;MissFortune.xaml;Morgana.xaml;Nasus.xaml;Neeko.xaml;Shyvana.xaml;Skarner.xaml;Soraka.xaml;Tristana.xaml;Volibear.xaml;
+
+True
+
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.i.lref b/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.i.lref
new file mode 100644
index 0000000..466198a
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.i.lref
@@ -0,0 +1,4 @@
+
+
+FC:\Users\F\source\repos\Projekt\Information.xaml;;
+
diff --git a/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.lref b/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.lref
new file mode 100644
index 0000000..14fa27d
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Projekt_MarkupCompile.lref
@@ -0,0 +1,33 @@
+
+
+FC:\Users\F\source\repos\Projekt\Amumu.xaml;;
+FC:\Users\F\source\repos\Projekt\Annie.xaml;;
+FC:\Users\F\source\repos\Projekt\Ashe.xaml;;
+FC:\Users\F\source\repos\Projekt\Blitzcrank.xaml;;
+FC:\Users\F\source\repos\Projekt\Caitlyn.xaml;;
+FC:\Users\F\source\repos\Projekt\Champions.xaml;;
+FC:\Users\F\source\repos\Projekt\Credits.xaml;;
+FC:\Users\F\source\repos\Projekt\Diana.xaml;;
+FC:\Users\F\source\repos\Projekt\DrMundo.xaml;;
+FC:\Users\F\source\repos\Projekt\Ezreal.xaml;;
+FC:\Users\F\source\repos\Projekt\Garen.xaml;;
+FC:\Users\F\source\repos\Projekt\Information.xaml;;
+FC:\Users\F\source\repos\Projekt\Janna.xaml;;
+FC:\Users\F\source\repos\Projekt\Leona.xaml;;
+FC:\Users\F\source\repos\Projekt\Lux.xaml;;
+FC:\Users\F\source\repos\Projekt\MainWindow.xaml;;
+FC:\Users\F\source\repos\Projekt\Malphite.xaml;;
+FC:\Users\F\source\repos\Projekt\Malzahar.xaml;;
+FC:\Users\F\source\repos\Projekt\Maokai.xaml;;
+FC:\Users\F\source\repos\Projekt\MasterYi.xaml;;
+FC:\Users\F\source\repos\Projekt\Menu.xaml;;
+FC:\Users\F\source\repos\Projekt\MissFortune.xaml;;
+FC:\Users\F\source\repos\Projekt\Morgana.xaml;;
+FC:\Users\F\source\repos\Projekt\Nasus.xaml;;
+FC:\Users\F\source\repos\Projekt\Neeko.xaml;;
+FC:\Users\F\source\repos\Projekt\Shyvana.xaml;;
+FC:\Users\F\source\repos\Projekt\Skarner.xaml;;
+FC:\Users\F\source\repos\Projekt\Soraka.xaml;;
+FC:\Users\F\source\repos\Projekt\Tristana.xaml;;
+FC:\Users\F\source\repos\Projekt\Volibear.xaml;;
+
diff --git a/Projekt135570/Projekt/obj/Debug/Shyvana.baml b/Projekt135570/Projekt/obj/Debug/Shyvana.baml
new file mode 100644
index 0000000..6c2fa49
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Shyvana.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Shyvana.g.cs b/Projekt135570/Projekt/obj/Debug/Shyvana.g.cs
new file mode 100644
index 0000000..aadab5c
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Shyvana.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Shyvana.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "3563AB55DCF6E83F5B9CED25080D4AC5FAEA2BC7C5E9A905558E1738409443D9"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Shyvana
+ ///
+ public partial class Shyvana : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/shyvana.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Shyvana.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Shyvana.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Shyvana.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Shyvana.g.i.cs b/Projekt135570/Projekt/obj/Debug/Shyvana.g.i.cs
new file mode 100644
index 0000000..aadab5c
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Shyvana.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Shyvana.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "3563AB55DCF6E83F5B9CED25080D4AC5FAEA2BC7C5E9A905558E1738409443D9"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Shyvana
+ ///
+ public partial class Shyvana : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/shyvana.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Shyvana.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Shyvana.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Shyvana.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Skarner.baml b/Projekt135570/Projekt/obj/Debug/Skarner.baml
new file mode 100644
index 0000000..3d458dc
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Skarner.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Skarner.g.cs b/Projekt135570/Projekt/obj/Debug/Skarner.g.cs
new file mode 100644
index 0000000..11dc94c
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Skarner.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Skarner.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9DD0F72786632B9E7886958BF4EA23DF285AB92779CCC8B11C58E896B4BAC74D"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Skarner
+ ///
+ public partial class Skarner : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/skarner.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Skarner.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Skarner.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Skarner.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Skarner.g.i.cs b/Projekt135570/Projekt/obj/Debug/Skarner.g.i.cs
new file mode 100644
index 0000000..11dc94c
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Skarner.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Skarner.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9DD0F72786632B9E7886958BF4EA23DF285AB92779CCC8B11C58E896B4BAC74D"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Skarner
+ ///
+ public partial class Skarner : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/skarner.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Skarner.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Skarner.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 45 "..\..\Skarner.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Soraka.baml b/Projekt135570/Projekt/obj/Debug/Soraka.baml
new file mode 100644
index 0000000..2eee015
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Soraka.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Soraka.g.cs b/Projekt135570/Projekt/obj/Debug/Soraka.g.cs
new file mode 100644
index 0000000..09eb4c7
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Soraka.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Soraka.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F0F7A915E2F02E68B19A9E8ADB24F3E27A72171F35B1FB48D2C8D58ED0C8FE1A"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Soraka
+ ///
+ public partial class Soraka : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/soraka.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Soraka.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Soraka.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Soraka.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Soraka.g.i.cs b/Projekt135570/Projekt/obj/Debug/Soraka.g.i.cs
new file mode 100644
index 0000000..09eb4c7
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Soraka.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Soraka.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "F0F7A915E2F02E68B19A9E8ADB24F3E27A72171F35B1FB48D2C8D58ED0C8FE1A"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Soraka
+ ///
+ public partial class Soraka : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/soraka.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Soraka.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Soraka.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Soraka.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/Projekt135570/Projekt/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll
new file mode 100644
index 0000000..6f93182
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll differ
diff --git a/Projekt135570/Projekt/obj/Debug/Tristana.baml b/Projekt135570/Projekt/obj/Debug/Tristana.baml
new file mode 100644
index 0000000..fb32342
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Tristana.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Tristana.g.cs b/Projekt135570/Projekt/obj/Debug/Tristana.g.cs
new file mode 100644
index 0000000..8f47bd4
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Tristana.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Tristana.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "3A2B89761AAC715979D6E74ACC6270DAD0D96A4E207707CE196174D39D7FD1F3"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Tristana
+ ///
+ public partial class Tristana : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/tristana.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Tristana.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Tristana.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Tristana.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Tristana.g.i.cs b/Projekt135570/Projekt/obj/Debug/Tristana.g.i.cs
new file mode 100644
index 0000000..8f47bd4
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Tristana.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Tristana.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "3A2B89761AAC715979D6E74ACC6270DAD0D96A4E207707CE196174D39D7FD1F3"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Tristana
+ ///
+ public partial class Tristana : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/tristana.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Tristana.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Tristana.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Tristana.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Volibear.baml b/Projekt135570/Projekt/obj/Debug/Volibear.baml
new file mode 100644
index 0000000..41635a4
Binary files /dev/null and b/Projekt135570/Projekt/obj/Debug/Volibear.baml differ
diff --git a/Projekt135570/Projekt/obj/Debug/Volibear.g.cs b/Projekt135570/Projekt/obj/Debug/Volibear.g.cs
new file mode 100644
index 0000000..560db27
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Volibear.g.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Volibear.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "D645FAA8ECC77355EAA8FB2E614E973451524D9883FD2E9ABF2C40A28CECD1D8"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Volibear
+ ///
+ public partial class Volibear : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/volibear.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Volibear.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Volibear.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Volibear.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/obj/Debug/Volibear.g.i.cs b/Projekt135570/Projekt/obj/Debug/Volibear.g.i.cs
new file mode 100644
index 0000000..560db27
--- /dev/null
+++ b/Projekt135570/Projekt/obj/Debug/Volibear.g.i.cs
@@ -0,0 +1,94 @@
+#pragma checksum "..\..\Volibear.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "D645FAA8ECC77355EAA8FB2E614E973451524D9883FD2E9ABF2C40A28CECD1D8"
+//------------------------------------------------------------------------------
+//
+// Ten kod został wygenerowany przez narzędzie.
+// Wersja wykonawcza:4.0.30319.42000
+//
+// Zmiany w tym pliku mogą spowodować nieprawidłowe zachowanie i zostaną utracone, jeśli
+// kod zostanie ponownie wygenerowany.
+//
+//------------------------------------------------------------------------------
+
+using Projekt;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace Projekt {
+
+
+ ///
+ /// Volibear
+ ///
+ public partial class Volibear : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/Projekt;component/volibear.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\Volibear.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+
+ #line 11 "..\..\Volibear.xaml"
+ ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.MoveToChampions);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+
+ #line 46 "..\..\Volibear.xaml"
+ ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/Projekt135570/Projekt/readme.txt b/Projekt135570/Projekt/readme.txt
new file mode 100644
index 0000000..437b1ff
--- /dev/null
+++ b/Projekt135570/Projekt/readme.txt
@@ -0,0 +1,9 @@
+This application was created to help beginning players of League of Legends.
+
+After you click "start", you have 3 buttons:
+Champions, which will move you to the screen with 25 characters from game, sorted by lane.
+(top, jungle, midlane and botlane)
+
+Second button, Information, will show you some basic tips about game and application.
+
+The third button - Credits - present some information about the author.
\ No newline at end of file