diff --git a/20240415/WindowsFormsApp1/.vs/WindowsFormsApp1/v16/.suo b/20240415/WindowsFormsApp1/.vs/WindowsFormsApp1/v16/.suo new file mode 100644 index 0000000..393001b Binary files /dev/null and b/20240415/WindowsFormsApp1/.vs/WindowsFormsApp1/v16/.suo differ diff --git a/20240415/WindowsFormsApp1/App.config b/20240415/WindowsFormsApp1/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/20240415/WindowsFormsApp1/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/20240415/WindowsFormsApp1/Form1.Designer.cs b/20240415/WindowsFormsApp1/Form1.Designer.cs new file mode 100644 index 0000000..b06fc5c --- /dev/null +++ b/20240415/WindowsFormsApp1/Form1.Designer.cs @@ -0,0 +1,103 @@ + +namespace WindowsFormsApp1 +{ + partial class Form1 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.label1 = new System.Windows.Forms.Label(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.button1 = new System.Windows.Forms.Button(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // pictureBox1 + // + this.pictureBox1.Image = global::WindowsFormsApp1.Properties.Resources._0; + this.pictureBox1.Location = new System.Drawing.Point(1, 0); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(500, 500); + this.pictureBox1.TabIndex = 0; + this.pictureBox1.TabStop = false; + this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.label1.Location = new System.Drawing.Point(729, 117); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(0, 24); + this.label1.TabIndex = 1; + // + // textBox1 + // + this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238))); + this.textBox1.Location = new System.Drawing.Point(681, 237); + this.textBox1.MaxLength = 1; + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(164, 29); + this.textBox1.TabIndex = 3; + // + // button1 + // + this.button1.Location = new System.Drawing.Point(723, 338); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(73, 33); + this.button1.TabIndex = 4; + this.button1.Text = "Ellenőrzés"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(1019, 503); + this.Controls.Add(this.button1); + this.Controls.Add(this.textBox1); + this.Controls.Add(this.label1); + this.Controls.Add(this.pictureBox1); + this.Name = "Form1"; + this.Text = "Akasztófa"; + this.Load += new System.EventHandler(this.Form1_Load); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Button button1; + } +} + diff --git a/20240415/WindowsFormsApp1/Form1.cs b/20240415/WindowsFormsApp1/Form1.cs new file mode 100644 index 0000000..bff440d --- /dev/null +++ b/20240415/WindowsFormsApp1/Form1.cs @@ -0,0 +1,150 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace WindowsFormsApp1 +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void pictureBox1_Click(object sender, EventArgs e) + { + + + } + + private void Form1_Load(object sender, EventArgs e) + { + //Data.words.Add("alma"); + //Data.words.Add("számítógép"); + + for (int i = 0; i < Data.word.Count(); i++) + { + label1.Text += "-"; + } + + WordToChars(Data.word); + Data.wordchar.Sort(); + } + + private void button1_Click(object sender, EventArgs e) + { + char guess = Convert.ToChar(textBox1.Text); + if (Isin(guess, Data.word)) + { + if (CharNotInList(guess, Data.charfound)) + { + Data.charfound.Add(guess); + Data.charfound.Sort(); + } + + if (Samelist(Data.charfound, Data.wordchar)) + { + MessageBox.Show("GRATULÁLOK!"); + } + + + + } else + { + Data.hiba++; + if (Data.hiba > 11) + { + MessageBox.Show("Sajnos vesztettél."); + Data.hiba = 0; + } + pictureBox1.Image = Image.FromFile($@"images\{Data.hiba}.png"); + } + } + + + public static bool Isin(char x, string word) + { + foreach (char c in word) + { + if (c == x) + { + return true; + } + } + return false; + } + + public static void WordToChars(string word) + { + foreach (char c in word) + { + if (CharNotInList(c, Data.wordchar)) + { + Data.wordchar.Add(c); + } + } + } + + public static bool CharNotInList(char c, List charList) + { + foreach (char x in charList) + { + if (x == c) + { + return false; + } + } + return true; + } + + public static bool Samelist(List a, List b) + { + if (a.Count != b.Count) + { + return false; + } + + for (int i = 0; i < a.Count; i++) + { + if (a[i] != b[i]) + { + return false; + } + } + + return true; + } + + + public static void labelTextChange() + { + char[] text = new char[Data.word.Count()]; + + for (int i = 0; i < Data.word.Count(); i++) + { + for (int j = 0; j < Data.charfound.Count(); j++) + { + if (Data.charfound[j] == Data.wordchar[i]) + { + text[i] = Data.charfound[j]; + } + } + } + } + } + + public static class Data + { + //public static List words = new List(); + public static string word = "alma"; + public static List wordchar = new List(); + public static List charfound = new List(); + public static int hiba = 0; + } +} diff --git a/20240415/WindowsFormsApp1/Form1.resx b/20240415/WindowsFormsApp1/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/20240415/WindowsFormsApp1/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/20240415/WindowsFormsApp1/Program.cs b/20240415/WindowsFormsApp1/Program.cs new file mode 100644 index 0000000..30a0128 --- /dev/null +++ b/20240415/WindowsFormsApp1/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace WindowsFormsApp1 +{ + static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/20240415/WindowsFormsApp1/Properties/AssemblyInfo.cs b/20240415/WindowsFormsApp1/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0eaaa37 --- /dev/null +++ b/20240415/WindowsFormsApp1/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("WindowsFormsApp1")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("WindowsFormsApp1")] +[assembly: AssemblyCopyright("Copyright © 2024")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("7c168087-03ac-4c6b-91e4-25dd7b833501")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/20240415/WindowsFormsApp1/Properties/Resources.Designer.cs b/20240415/WindowsFormsApp1/Properties/Resources.Designer.cs new file mode 100644 index 0000000..fac655e --- /dev/null +++ b/20240415/WindowsFormsApp1/Properties/Resources.Designer.cs @@ -0,0 +1,183 @@ +//------------------------------------------------------------------------------ +// +// 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 WindowsFormsApp1.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.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() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WindowsFormsApp1.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _0 { + get { + object obj = ResourceManager.GetObject("0", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _1 { + get { + object obj = ResourceManager.GetObject("1", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _10 { + get { + object obj = ResourceManager.GetObject("10", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _11 { + get { + object obj = ResourceManager.GetObject("11", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _2 { + get { + object obj = ResourceManager.GetObject("2", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _3 { + get { + object obj = ResourceManager.GetObject("3", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _4 { + get { + object obj = ResourceManager.GetObject("4", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _5 { + get { + object obj = ResourceManager.GetObject("5", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _6 { + get { + object obj = ResourceManager.GetObject("6", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _7 { + get { + object obj = ResourceManager.GetObject("7", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _8 { + get { + object obj = ResourceManager.GetObject("8", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap _9 { + get { + object obj = ResourceManager.GetObject("9", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/20240415/WindowsFormsApp1/Properties/Resources.resx b/20240415/WindowsFormsApp1/Properties/Resources.resx new file mode 100644 index 0000000..46192c1 --- /dev/null +++ b/20240415/WindowsFormsApp1/Properties/Resources.resx @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\bin\Debug\images\2.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\bin\Debug\images\1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\bin\Debug\images\0.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\bin\Debug\images\3.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\bin\Debug\images\4.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\bin\Debug\images\5.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\bin\Debug\images\6.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\bin\Debug\images\7.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\bin\Debug\images\8.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\bin\Debug\images\9.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\bin\Debug\images\10.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\bin\Debug\images\11.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/20240415/WindowsFormsApp1/Properties/Settings.Designer.cs b/20240415/WindowsFormsApp1/Properties/Settings.Designer.cs new file mode 100644 index 0000000..3cdaf80 --- /dev/null +++ b/20240415/WindowsFormsApp1/Properties/Settings.Designer.cs @@ -0,0 +1,29 @@ +//------------------------------------------------------------------------------ +// +// 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 WindowsFormsApp1.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/20240415/WindowsFormsApp1/Properties/Settings.settings b/20240415/WindowsFormsApp1/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/20240415/WindowsFormsApp1/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/20240415/WindowsFormsApp1/WindowsFormsApp1.csproj b/20240415/WindowsFormsApp1/WindowsFormsApp1.csproj new file mode 100644 index 0000000..8b3eb36 --- /dev/null +++ b/20240415/WindowsFormsApp1/WindowsFormsApp1.csproj @@ -0,0 +1,120 @@ + + + + + Debug + AnyCPU + {7C168087-03AC-4C6B-91E4-25DD7B833501} + WinExe + WindowsFormsApp1 + WindowsFormsApp1 + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/20240415/WindowsFormsApp1/WindowsFormsApp1.sln b/20240415/WindowsFormsApp1/WindowsFormsApp1.sln new file mode 100644 index 0000000..f052801 --- /dev/null +++ b/20240415/WindowsFormsApp1/WindowsFormsApp1.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.33529.622 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsApp1", "WindowsFormsApp1.csproj", "{7C168087-03AC-4C6B-91E4-25DD7B833501}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7C168087-03AC-4C6B-91E4-25DD7B833501}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7C168087-03AC-4C6B-91E4-25DD7B833501}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7C168087-03AC-4C6B-91E4-25DD7B833501}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7C168087-03AC-4C6B-91E4-25DD7B833501}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8A7323CC-B3DF-44C1-9504-889E117D1378} + EndGlobalSection +EndGlobal diff --git a/20240415/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe b/20240415/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe new file mode 100644 index 0000000..499b0a8 Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe.config b/20240415/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/20240415/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/20240415/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.pdb b/20240415/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.pdb new file mode 100644 index 0000000..d4be1a6 Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.pdb differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/0.png b/20240415/WindowsFormsApp1/bin/Debug/images/0.png new file mode 100644 index 0000000..23b207a Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/0.png differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/1.png b/20240415/WindowsFormsApp1/bin/Debug/images/1.png new file mode 100644 index 0000000..4503c5f Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/1.png differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/10.png b/20240415/WindowsFormsApp1/bin/Debug/images/10.png new file mode 100644 index 0000000..f20acd5 Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/10.png differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/11.png b/20240415/WindowsFormsApp1/bin/Debug/images/11.png new file mode 100644 index 0000000..fe14e4f Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/11.png differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/2.png b/20240415/WindowsFormsApp1/bin/Debug/images/2.png new file mode 100644 index 0000000..76eb5e7 Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/2.png differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/3.png b/20240415/WindowsFormsApp1/bin/Debug/images/3.png new file mode 100644 index 0000000..0d3eeb4 Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/3.png differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/4.png b/20240415/WindowsFormsApp1/bin/Debug/images/4.png new file mode 100644 index 0000000..6edb5b7 Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/4.png differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/5.png b/20240415/WindowsFormsApp1/bin/Debug/images/5.png new file mode 100644 index 0000000..4e5219f Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/5.png differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/6.png b/20240415/WindowsFormsApp1/bin/Debug/images/6.png new file mode 100644 index 0000000..a50b68e Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/6.png differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/7.png b/20240415/WindowsFormsApp1/bin/Debug/images/7.png new file mode 100644 index 0000000..84b36f5 Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/7.png differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/8.png b/20240415/WindowsFormsApp1/bin/Debug/images/8.png new file mode 100644 index 0000000..8994cc8 Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/8.png differ diff --git a/20240415/WindowsFormsApp1/bin/Debug/images/9.png b/20240415/WindowsFormsApp1/bin/Debug/images/9.png new file mode 100644 index 0000000..2722835 Binary files /dev/null and b/20240415/WindowsFormsApp1/bin/Debug/images/9.png differ diff --git a/20240415/WindowsFormsApp1/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/20240415/WindowsFormsApp1/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/20240415/WindowsFormsApp1/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/20240415/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/20240415/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..a6920de Binary files /dev/null and b/20240415/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/20240415/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/20240415/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..7a84306 Binary files /dev/null and b/20240415/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/20240415/WindowsFormsApp1/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/20240415/WindowsFormsApp1/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll new file mode 100644 index 0000000..42764c7 Binary files /dev/null and b/20240415/WindowsFormsApp1/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll differ diff --git a/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Form1.resources b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Form1.resources differ diff --git a/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Properties.Resources.resources b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Properties.Resources.resources new file mode 100644 index 0000000..77b36ff Binary files /dev/null and b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Properties.Resources.resources differ diff --git a/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.AssemblyReference.cache b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f5e894a Binary files /dev/null and b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.AssemblyReference.cache differ diff --git a/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.CoreCompileInputs.cache b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4a5524a --- /dev/null +++ b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8069502011d0681850e57a53d5a1673222f430a6 diff --git a/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.FileListAbsolute.txt b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..8539517 --- /dev/null +++ b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Users\szabomarton\Desktop\C#\20240415\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.exe.config +C:\Users\szabomarton\Desktop\C#\20240415\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.exe +C:\Users\szabomarton\Desktop\C#\20240415\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.pdb +C:\Users\szabomarton\Desktop\C#\20240415\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.csproj.AssemblyReference.cache +C:\Users\szabomarton\Desktop\C#\20240415\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.Form1.resources +C:\Users\szabomarton\Desktop\C#\20240415\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.Properties.Resources.resources +C:\Users\szabomarton\Desktop\C#\20240415\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.csproj.GenerateResource.cache +C:\Users\szabomarton\Desktop\C#\20240415\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.csproj.CoreCompileInputs.cache +C:\Users\szabomarton\Desktop\C#\20240415\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.exe +C:\Users\szabomarton\Desktop\C#\20240415\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.pdb diff --git a/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.GenerateResource.cache b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.GenerateResource.cache new file mode 100644 index 0000000..7e3cf53 Binary files /dev/null and b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.GenerateResource.cache differ diff --git a/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.exe b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.exe new file mode 100644 index 0000000..499b0a8 Binary files /dev/null and b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.exe differ diff --git a/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.pdb b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.pdb new file mode 100644 index 0000000..d4be1a6 Binary files /dev/null and b/20240415/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.pdb differ