diff --git a/Test_App.sln b/Test_App.sln
new file mode 100644
index 0000000..374588c
--- /dev/null
+++ b/Test_App.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.1.32328.378
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test_App", "Test_App\Test_App.csproj", "{90B7D34D-C7F6-4BCF-88D5-20FF99927438}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {90B7D34D-C7F6-4BCF-88D5-20FF99927438}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {90B7D34D-C7F6-4BCF-88D5-20FF99927438}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {90B7D34D-C7F6-4BCF-88D5-20FF99927438}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {90B7D34D-C7F6-4BCF-88D5-20FF99927438}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {813213D7-F272-4114-B0F3-E2522E2EE3F9}
+ EndGlobalSection
+EndGlobal
diff --git a/Test_App/App.config b/Test_App/App.config
new file mode 100644
index 0000000..56efbc7
--- /dev/null
+++ b/Test_App/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Test_App/App.xaml b/Test_App/App.xaml
new file mode 100644
index 0000000..dee3807
--- /dev/null
+++ b/Test_App/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Test_App/App.xaml.cs b/Test_App/App.xaml.cs
new file mode 100644
index 0000000..b653119
--- /dev/null
+++ b/Test_App/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 Test_App
+{
+ ///
+ /// Interaktionslogik für "App.xaml"
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/Test_App/Images/code.png b/Test_App/Images/code.png
new file mode 100644
index 0000000..e0579a1
Binary files /dev/null and b/Test_App/Images/code.png differ
diff --git a/Test_App/Images/home.png b/Test_App/Images/home.png
new file mode 100644
index 0000000..5ba1c4b
Binary files /dev/null and b/Test_App/Images/home.png differ
diff --git a/Test_App/MainWindow.xaml b/Test_App/MainWindow.xaml
new file mode 100644
index 0000000..ab06596
--- /dev/null
+++ b/Test_App/MainWindow.xaml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Test_App/MainWindow.xaml.cs b/Test_App/MainWindow.xaml.cs
new file mode 100644
index 0000000..ce16f6a
--- /dev/null
+++ b/Test_App/MainWindow.xaml.cs
@@ -0,0 +1,68 @@
+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 Test_App
+{
+ ///
+ /// Interaktionslogik für MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ frame.NavigationService.Navigate(new Views.HomeView());
+
+ }
+
+
+ // Buttons
+ private void home_on_click(object sender, RoutedEventArgs e)
+ {
+ frame.NavigationService.Navigate(new Views.HomeView());
+ }
+
+ private void start_on_click(object sender, RoutedEventArgs e)
+ {
+ frame.NavigationService.Navigate(new Views.Start());
+ }
+
+ private void exit_on_click(object sender, RoutedEventArgs e)
+ {
+ System.Diagnostics.Process.GetCurrentProcess().Kill();
+ }
+
+ private void datenbank_on_click(object sender, RoutedEventArgs e)
+ {
+ frame.NavigationService.Navigate(new Views.Database());
+ }
+
+ private void info_on_click(object sender, RoutedEventArgs e)
+ {
+ frame.NavigationService.Navigate(new Views.Info());
+ }
+
+ private void Drag_Window(object sender, MouseButtonEventArgs e)
+ {
+ if (e.ChangedButton == MouseButton.Left)
+ this.DragMove();
+
+ }
+
+
+ // Json Parser
+
+ }
+}
diff --git a/Test_App/Properties/AssemblyInfo.cs b/Test_App/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..a2e107f
--- /dev/null
+++ b/Test_App/Properties/AssemblyInfo.cs
@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// Allgemeine Informationen über eine Assembly werden über die folgenden
+// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
+// die einer Assembly zugeordnet sind.
+[assembly: AssemblyTitle("Test_App")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Test_App")]
+[assembly: AssemblyCopyright("Copyright © 2022")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly
+// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von
+// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen.
+[assembly: ComVisible(false)]
+
+//Um mit dem Erstellen lokalisierbarer Anwendungen zu beginnen, legen Sie
+//ImCodeVerwendeteKultur in der .csproj-Datei
+//in einer fest. Wenn Sie in den Quelldateien beispielsweise Deutsch
+//(Deutschland) verwenden, legen Sie auf \"de-DE\" fest. Heben Sie dann die Auskommentierung
+//des nachstehenden NeutralResourceLanguage-Attributs auf. Aktualisieren Sie "en-US" in der nachstehenden Zeile,
+//sodass es mit der UICulture-Einstellung in der Projektdatei übereinstimmt.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //Speicherort der designspezifischen Ressourcenwörterbücher
+ //(wird verwendet, wenn eine Ressource auf der Seite nicht gefunden wird,
+ // oder in den Anwendungsressourcen-Wörterbüchern nicht gefunden werden kann.)
+ ResourceDictionaryLocation.SourceAssembly //Speicherort des generischen Ressourcenwörterbuchs
+ //(wird verwendet, wenn eine Ressource auf der Seite nicht gefunden wird,
+ // designspezifischen Ressourcenwörterbuch nicht gefunden werden kann.)
+)]
+
+
+// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
+//
+// Hauptversion
+// Nebenversion
+// Buildnummer
+// Revision
+//
+// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden,
+// indem Sie "*" wie unten gezeigt eingeben:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Test_App/Properties/Resources.Designer.cs b/Test_App/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..4530808
--- /dev/null
+++ b/Test_App/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion: 4.0.30319.42000
+//
+// Änderungen an dieser Datei können fehlerhaftes Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+namespace Test_App.Properties
+{
+
+
+ ///
+ /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
+ ///
+ // Diese Klasse wurde von der StronglyTypedResourceBuilder-Klasse
+ // über ein Tool wie ResGen oder Visual Studio automatisch generiert.
+ // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
+ // mit der Option /str erneut aus, oder erstellen Sie Ihr VS-Projekt neu.
+ [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()
+ {
+ }
+
+ ///
+ /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
+ ///
+ [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("Test_App.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
+ /// Ressourcenlookups, die diese stark typisierte Ressourcenklasse verwenden.
+ ///
+ [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/Test_App/Properties/Resources.resx b/Test_App/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/Test_App/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/Test_App/Properties/Settings.Designer.cs b/Test_App/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..d701fa6
--- /dev/null
+++ b/Test_App/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 Test_App.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/Test_App/Properties/Settings.settings b/Test_App/Properties/Settings.settings
new file mode 100644
index 0000000..033d7a5
--- /dev/null
+++ b/Test_App/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Test_App/Ressources/datas.cs b/Test_App/Ressources/datas.cs
new file mode 100644
index 0000000..670c474
--- /dev/null
+++ b/Test_App/Ressources/datas.cs
@@ -0,0 +1,19 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Test_App.Ressources
+{
+ public class datas
+ {
+ public List Datas { get; set;}
+ }
+public class Datas
+{
+public int ID { get; set; }
+ public string Question { get; set; }
+ public string Answer { get; set; }
+}
+}
diff --git a/Test_App/Style/Menu_Button_Style.xaml b/Test_App/Style/Menu_Button_Style.xaml
new file mode 100644
index 0000000..07438cc
--- /dev/null
+++ b/Test_App/Style/Menu_Button_Style.xaml
@@ -0,0 +1,25 @@
+
+
+
\ No newline at end of file
diff --git a/Test_App/Style/Textbox_Style.xaml b/Test_App/Style/Textbox_Style.xaml
new file mode 100644
index 0000000..a78532a
--- /dev/null
+++ b/Test_App/Style/Textbox_Style.xaml
@@ -0,0 +1,19 @@
+
+
+
+
\ No newline at end of file
diff --git a/Test_App/Test_App.csproj b/Test_App/Test_App.csproj
new file mode 100644
index 0000000..e7fbf4a
--- /dev/null
+++ b/Test_App/Test_App.csproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {90B7D34D-C7F6-4BCF-88D5-20FF99927438}
+ WinExe
+ Test_App
+ Test_App
+ 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
+
+
+
+ ..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll
+
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+
+ Database.xaml
+
+
+ HomeView.xaml
+
+
+ Info.xaml
+
+
+ MainView.xaml
+
+
+ Start.xaml
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+ MainWindow.xaml
+ Code
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+ Designer
+ MSBuild:Compile
+
+
+
+
+ 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/Test_App/Views/Database.xaml b/Test_App/Views/Database.xaml
new file mode 100644
index 0000000..ff69635
--- /dev/null
+++ b/Test_App/Views/Database.xaml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Test_App/Views/Database.xaml.cs b/Test_App/Views/Database.xaml.cs
new file mode 100644
index 0000000..639fb19
--- /dev/null
+++ b/Test_App/Views/Database.xaml.cs
@@ -0,0 +1,32 @@
+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 Test_App.Views
+{
+ ///
+ /// Interaktionslogik für Database.xaml
+ ///
+ public partial class Database : Page
+ {
+
+ public Database()
+ {
+ InitializeComponent();
+
+
+
+ }
+ }
+}
diff --git a/Test_App/Views/HomeView.xaml b/Test_App/Views/HomeView.xaml
new file mode 100644
index 0000000..143773d
--- /dev/null
+++ b/Test_App/Views/HomeView.xaml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
diff --git a/Test_App/Views/HomeView.xaml.cs b/Test_App/Views/HomeView.xaml.cs
new file mode 100644
index 0000000..94fdf0f
--- /dev/null
+++ b/Test_App/Views/HomeView.xaml.cs
@@ -0,0 +1,28 @@
+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 Test_App.Views
+{
+ ///
+ /// Interaktionslogik für HomeView.xaml
+ ///
+ public partial class HomeView : Page
+ {
+ public HomeView()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Test_App/Views/Info.xaml b/Test_App/Views/Info.xaml
new file mode 100644
index 0000000..78d2284
--- /dev/null
+++ b/Test_App/Views/Info.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
diff --git a/Test_App/Views/Info.xaml.cs b/Test_App/Views/Info.xaml.cs
new file mode 100644
index 0000000..19ee8c0
--- /dev/null
+++ b/Test_App/Views/Info.xaml.cs
@@ -0,0 +1,28 @@
+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 Test_App.Views
+{
+ ///
+ /// Interaktionslogik für Info.xaml
+ ///
+ public partial class Info : Page
+ {
+ public Info()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Test_App/Views/MainView.xaml b/Test_App/Views/MainView.xaml
new file mode 100644
index 0000000..7f3a4d0
--- /dev/null
+++ b/Test_App/Views/MainView.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/Test_App/Views/MainView.xaml.cs b/Test_App/Views/MainView.xaml.cs
new file mode 100644
index 0000000..bbb3047
--- /dev/null
+++ b/Test_App/Views/MainView.xaml.cs
@@ -0,0 +1,28 @@
+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 Test_App.Views
+{
+ ///
+ /// Interaktionslogik für MainView.xaml
+ ///
+ public partial class MainView : Page
+ {
+ public MainView()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Test_App/Views/Start.xaml b/Test_App/Views/Start.xaml
new file mode 100644
index 0000000..ff52e34
--- /dev/null
+++ b/Test_App/Views/Start.xaml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Test_App/Views/Start.xaml.cs b/Test_App/Views/Start.xaml.cs
new file mode 100644
index 0000000..95b0d42
--- /dev/null
+++ b/Test_App/Views/Start.xaml.cs
@@ -0,0 +1,89 @@
+using Newtonsoft.Json;
+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 Test_App.Views
+{
+ ///
+ /// Interaktionslogik für Start.xaml
+ ///
+ public partial class Start : Page
+ {
+ string json_url = "https://git.weifer.org/weifer/Pruefungskatalog/raw/branch/master/assets/questions_answers.json";
+
+ string get_questions = "";
+ string get_answer = "";
+ //dynamic data = null;
+ public Start()
+ {
+ InitializeComponent();
+ // data = get_jsonData(json_url);
+ }
+ // Buttons
+ private void Next_Button_Click(object sender, RoutedEventArgs e)
+ {
+ get_question();
+ question_textbox.Text = get_questions;
+ answer_textbox.Text = "";
+ }
+ private void Get_Answer_Button(object sender, RoutedEventArgs e)
+ {
+ if (get_answer.Length < 100)
+ {
+ answer_textbox.FontSize = 20;
+ answer_textbox.Text = get_answer;
+ }
+ answer_textbox.Text = get_answer;
+ }
+
+
+ // Json
+ dynamic get_jsonData(string url)
+ {
+ string json = "";
+ var webclient = new System.Net.WebClient();
+ webclient.Encoding = Encoding.UTF8;
+ try
+ {
+ json = webclient.DownloadString(url);
+ }
+ catch (System.Net.WebException e)
+ {
+ throw e;
+ }
+ dynamic dynJson = JsonConvert.DeserializeObject(json);
+ return dynJson;
+
+ }
+ // Returns random String from a Random Json Object in JsonData
+ public void get_question()
+ {
+
+ dynamic json_data = get_jsonData(json_url);
+ int count = json_data.Count; // Count Json Objects
+ int random_number = new Random().Next(0, 40); // Random number between 0, and all Json Objects
+ get_questions = json_data[random_number][$"{random_number}"]["question"];
+
+ get_answer = json_data[random_number][$"{random_number}"]["answer"];
+
+
+ }
+
+ private void question_textbox_TextChanged(object sender, TextChangedEventArgs e)
+ {
+
+ }
+ }
+}
diff --git a/Test_App/packages.config b/Test_App/packages.config
new file mode 100644
index 0000000..5eaa239
--- /dev/null
+++ b/Test_App/packages.config
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file