From 6bd6632020ba1a3f4223f1e0d8a79fd4ce17d3cf Mon Sep 17 00:00:00 2001 From: szabomarton Date: Mon, 26 Feb 2024 11:16:29 +0100 Subject: [PATCH] added orai --- .../.vs/WindowsFormsApp1/v16/.suo | Bin 0 -> 25600 bytes 20240226/WindowsFormsApp1/App.config | 6 + 20240226/WindowsFormsApp1/Form1.Designer.cs | 120 +++++++++++++ 20240226/WindowsFormsApp1/Form1.cs | 53 ++++++ 20240226/WindowsFormsApp1/Form1.resx | 120 +++++++++++++ 20240226/WindowsFormsApp1/Program.cs | 22 +++ .../Properties/AssemblyInfo.cs | 36 ++++ .../Properties/Resources.Designer.cs | 70 ++++++++ .../Properties/Resources.resx | 117 +++++++++++++ .../Properties/Settings.Designer.cs | 29 ++++ .../Properties/Settings.settings | 7 + .../WindowsFormsApp1/WindowsFormsApp1.csproj | 83 +++++++++ .../WindowsFormsApp1/WindowsFormsApp1.sln | 25 +++ .../bin/Debug/WindowsFormsApp1.exe | Bin 0 -> 9728 bytes .../bin/Debug/WindowsFormsApp1.exe.config | 6 + .../bin/Debug/WindowsFormsApp1.pdb | Bin 0 -> 32256 bytes ...ework,Version=v4.7.2.AssemblyAttributes.cs | 4 + .../DesignTimeResolveAssemblyReferences.cache | Bin 0 -> 277 bytes ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 7228 bytes .../Debug/WindowsFormsApp1.Form1.resources | Bin 0 -> 180 bytes ...wsFormsApp1.Properties.Resources.resources | Bin 0 -> 180 bytes ...wsFormsApp1.csproj.AssemblyReference.cache | Bin 0 -> 11 bytes ...wsFormsApp1.csproj.CoreCompileInputs.cache | 1 + ...ndowsFormsApp1.csproj.FileListAbsolute.txt | 10 ++ ...owsFormsApp1.csproj.GenerateResource.cache | Bin 0 -> 1012 bytes .../obj/Debug/WindowsFormsApp1.exe | Bin 0 -> 9728 bytes .../obj/Debug/WindowsFormsApp1.pdb | Bin 0 -> 32256 bytes .../.vs/WindowsFormsApp2/v16/.suo | Bin 0 -> 34816 bytes 20240226/WindowsFormsApp2/App.config | 6 + 20240226/WindowsFormsApp2/Form1.Designer.cs | 163 ++++++++++++++++++ 20240226/WindowsFormsApp2/Form1.cs | 59 +++++++ 20240226/WindowsFormsApp2/Form1.resx | 120 +++++++++++++ 20240226/WindowsFormsApp2/Program.cs | 22 +++ .../Properties/AssemblyInfo.cs | 36 ++++ .../Properties/Resources.Designer.cs | 70 ++++++++ .../Properties/Resources.resx | 117 +++++++++++++ .../Properties/Settings.Designer.cs | 29 ++++ .../Properties/Settings.settings | 7 + .../WindowsFormsApp2/WindowsFormsApp2.csproj | 83 +++++++++ .../WindowsFormsApp2/WindowsFormsApp2.sln | 25 +++ ...ework,Version=v4.7.2.AssemblyAttributes.cs | 4 + ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 7228 bytes form_anyag | 46 +++++ 43 files changed, 1496 insertions(+) create mode 100644 20240226/WindowsFormsApp1/.vs/WindowsFormsApp1/v16/.suo create mode 100644 20240226/WindowsFormsApp1/App.config create mode 100644 20240226/WindowsFormsApp1/Form1.Designer.cs create mode 100644 20240226/WindowsFormsApp1/Form1.cs create mode 100644 20240226/WindowsFormsApp1/Form1.resx create mode 100644 20240226/WindowsFormsApp1/Program.cs create mode 100644 20240226/WindowsFormsApp1/Properties/AssemblyInfo.cs create mode 100644 20240226/WindowsFormsApp1/Properties/Resources.Designer.cs create mode 100644 20240226/WindowsFormsApp1/Properties/Resources.resx create mode 100644 20240226/WindowsFormsApp1/Properties/Settings.Designer.cs create mode 100644 20240226/WindowsFormsApp1/Properties/Settings.settings create mode 100644 20240226/WindowsFormsApp1/WindowsFormsApp1.csproj create mode 100644 20240226/WindowsFormsApp1/WindowsFormsApp1.sln create mode 100644 20240226/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe create mode 100644 20240226/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe.config create mode 100644 20240226/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.pdb create mode 100644 20240226/WindowsFormsApp1/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 20240226/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferences.cache create mode 100644 20240226/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Form1.resources create mode 100644 20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Properties.Resources.resources create mode 100644 20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.AssemblyReference.cache create mode 100644 20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.CoreCompileInputs.cache create mode 100644 20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.FileListAbsolute.txt create mode 100644 20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.GenerateResource.cache create mode 100644 20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.exe create mode 100644 20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.pdb create mode 100644 20240226/WindowsFormsApp2/.vs/WindowsFormsApp2/v16/.suo create mode 100644 20240226/WindowsFormsApp2/App.config create mode 100644 20240226/WindowsFormsApp2/Form1.Designer.cs create mode 100644 20240226/WindowsFormsApp2/Form1.cs create mode 100644 20240226/WindowsFormsApp2/Form1.resx create mode 100644 20240226/WindowsFormsApp2/Program.cs create mode 100644 20240226/WindowsFormsApp2/Properties/AssemblyInfo.cs create mode 100644 20240226/WindowsFormsApp2/Properties/Resources.Designer.cs create mode 100644 20240226/WindowsFormsApp2/Properties/Resources.resx create mode 100644 20240226/WindowsFormsApp2/Properties/Settings.Designer.cs create mode 100644 20240226/WindowsFormsApp2/Properties/Settings.settings create mode 100644 20240226/WindowsFormsApp2/WindowsFormsApp2.csproj create mode 100644 20240226/WindowsFormsApp2/WindowsFormsApp2.sln create mode 100644 20240226/WindowsFormsApp2/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 20240226/WindowsFormsApp2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache diff --git a/20240226/WindowsFormsApp1/.vs/WindowsFormsApp1/v16/.suo b/20240226/WindowsFormsApp1/.vs/WindowsFormsApp1/v16/.suo new file mode 100644 index 0000000000000000000000000000000000000000..2db654401e7a53f24202dcc11ce640b373b88027 GIT binary patch literal 25600 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 I=cuLp4@fPh8UO$Q literal 0 HcmV?d00001 diff --git a/20240226/WindowsFormsApp1/App.config b/20240226/WindowsFormsApp1/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/20240226/WindowsFormsApp1/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/20240226/WindowsFormsApp1/Form1.Designer.cs b/20240226/WindowsFormsApp1/Form1.Designer.cs new file mode 100644 index 0000000..f5df76b --- /dev/null +++ b/20240226/WindowsFormsApp1/Form1.Designer.cs @@ -0,0 +1,120 @@ + +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.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.button1 = new System.Windows.Forms.Button(); + this.label3 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(97, 97); + this.label1.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(124, 26); + this.label1.TabIndex = 0; + this.label1.Text = "Kör sugara:"; + this.label1.Click += new System.EventHandler(this.label1_Click); + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(97, 256); + this.label2.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(152, 26); + this.label2.TabIndex = 1; + this.label2.Text = "A kör kerülete:"; + // + // textBox1 + // + this.textBox1.Location = new System.Drawing.Point(233, 97); + this.textBox1.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(196, 32); + this.textBox1.TabIndex = 2; + this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged); + // + // button1 + // + this.button1.Location = new System.Drawing.Point(261, 147); + this.button1.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(150, 44); + this.button1.TabIndex = 3; + this.button1.Text = "Számol"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(97, 328); + this.label3.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(147, 26); + this.label3.TabIndex = 4; + this.label3.Text = "A kör területe:"; + this.label3.Click += new System.EventHandler(this.label3_Click); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 25F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(559, 468); + this.Controls.Add(this.label3); + this.Controls.Add(this.button1); + this.Controls.Add(this.textBox1); + this.Controls.Add(this.label2); + this.Controls.Add(this.label1); + this.Font = new System.Drawing.Font("Microsoft Sans Serif", 16F); + this.Margin = new System.Windows.Forms.Padding(6, 6, 6, 6); + this.Name = "Form1"; + this.Text = "Form1"; + this.Load += new System.EventHandler(this.Form1_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.Label label3; + } +} + diff --git a/20240226/WindowsFormsApp1/Form1.cs b/20240226/WindowsFormsApp1/Form1.cs new file mode 100644 index 0000000..8447104 --- /dev/null +++ b/20240226/WindowsFormsApp1/Form1.cs @@ -0,0 +1,53 @@ +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 label1_Click(object sender, EventArgs e) + { + + } + + private void button1_Click(object sender, EventArgs e) + { + double r = Convert.ToDouble(textBox1.Text); + + label2.Text = $"A kör kerülete: {2 * r * Math.PI}"; + label3.Text = $"A kör területe: {r* r * Math.PI}"; + } + + private void textBox1_TextChanged(object sender, EventArgs e) + { + + } + + private void label3_Click(object sender, EventArgs e) + { + + } + + private void Form1_Load(object sender, EventArgs e) + { + + } + + private void radioButton1_CheckedChanged(object sender, EventArgs e) + { + + } + } +} diff --git a/20240226/WindowsFormsApp1/Form1.resx b/20240226/WindowsFormsApp1/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/20240226/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/20240226/WindowsFormsApp1/Program.cs b/20240226/WindowsFormsApp1/Program.cs new file mode 100644 index 0000000..30a0128 --- /dev/null +++ b/20240226/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/20240226/WindowsFormsApp1/Properties/AssemblyInfo.cs b/20240226/WindowsFormsApp1/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..77d283f --- /dev/null +++ b/20240226/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("69e2f774-f784-4e9f-98f3-817b5fad4f7c")] + +// 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/20240226/WindowsFormsApp1/Properties/Resources.Designer.cs b/20240226/WindowsFormsApp1/Properties/Resources.Designer.cs new file mode 100644 index 0000000..2b9cd9f --- /dev/null +++ b/20240226/WindowsFormsApp1/Properties/Resources.Designer.cs @@ -0,0 +1,70 @@ +//------------------------------------------------------------------------------ +// +// 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 +{ + /// + /// 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", "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() + { + } + + /// + /// 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 ((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; + } + } + } +} diff --git a/20240226/WindowsFormsApp1/Properties/Resources.resx b/20240226/WindowsFormsApp1/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/20240226/WindowsFormsApp1/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/20240226/WindowsFormsApp1/Properties/Settings.Designer.cs b/20240226/WindowsFormsApp1/Properties/Settings.Designer.cs new file mode 100644 index 0000000..3cdaf80 --- /dev/null +++ b/20240226/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/20240226/WindowsFormsApp1/Properties/Settings.settings b/20240226/WindowsFormsApp1/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/20240226/WindowsFormsApp1/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/20240226/WindowsFormsApp1/WindowsFormsApp1.csproj b/20240226/WindowsFormsApp1/WindowsFormsApp1.csproj new file mode 100644 index 0000000..8ee9904 --- /dev/null +++ b/20240226/WindowsFormsApp1/WindowsFormsApp1.csproj @@ -0,0 +1,83 @@ + + + + + Debug + AnyCPU + {69E2F774-F784-4E9F-98F3-817B5FAD4F7C} + 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 + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/20240226/WindowsFormsApp1/WindowsFormsApp1.sln b/20240226/WindowsFormsApp1/WindowsFormsApp1.sln new file mode 100644 index 0000000..75f9468 --- /dev/null +++ b/20240226/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", "{69E2F774-F784-4E9F-98F3-817B5FAD4F7C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {69E2F774-F784-4E9F-98F3-817B5FAD4F7C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {69E2F774-F784-4E9F-98F3-817B5FAD4F7C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {69E2F774-F784-4E9F-98F3-817B5FAD4F7C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {69E2F774-F784-4E9F-98F3-817B5FAD4F7C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {54B5A942-285B-4D91-BACB-14673A0B7ED1} + EndGlobalSection +EndGlobal diff --git a/20240226/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe b/20240226/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe new file mode 100644 index 0000000000000000000000000000000000000000..7a4f22f7d2b81476feacfba51c3ae4151281e9c5 GIT binary patch literal 9728 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 + + + + + \ No newline at end of file diff --git a/20240226/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.pdb b/20240226/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.pdb new file mode 100644 index 0000000000000000000000000000000000000000..794aac95e2982ea038454a1175ab095f200be36e GIT binary patch literal 32256 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 literal 0 HcmV?d00001 diff --git a/20240226/WindowsFormsApp1/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/20240226/WindowsFormsApp1/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/20240226/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/20240226/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/20240226/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000000000000000000000000000000000000..a6920debe5520aa9639afe16e260d4ccd7630a39 GIT binary patch literal 277 zcmeZu3JP{+WMpDsU|>vhwu%WT%1wu0N8$suaf6y5WILo1w#fQ!Z5Hls-Q7Km zgZM4|1yz4yJ9B>HEwn;Di4Q*H@v$%S?99#XJu?o4L!r<=aN##z_lH1O@3<+25>;*N za^+FGpgoHVBO@F~xLeuHM0}S?#f7_`S~imSmxyOPTYHkNyUf#)+KKp%SFySI8*3KD z5p&lo$%X1tb)}k0SxZT}Kt~XA^)pDnc-*!SZ_Cw8iuwmh>vblLJe6B+-P7t3OnyXd zTQr!pp%il}c60MYGZ$B-CSY_%xK&=uahuJU)U~)pHS3JTRyAMsY&$2Z!x};!b-IeQ z0)5jL`f|dyz}~0WSfsMXbaz_8t0<MyvE?ca>+7wqrTB-N2es6- zhCbxit9Wvy{rs%B4R$JhX_;9rnW=^3Oik7;O=W>mX&&rQeV`_5mm0?FQdGf1Xw{Tt zHLkR5_9jHZFwM|~bD-$FGtQyRT}cWsRLH*(>m_xQiJeAxxa3`aQaW8^-_5SajxJE+S~?pmUuazZ+4qh3#yMCA|$ zR=gSx2j*D>c9dsI*vDNe+@nHFPy#2&+F}>L6`txFxlv*zB4Ky-^11jsjpB@7o4Fs-3M}3$l0AmFL z)8)&O`AAOz={QKFEY;LN0a4IP9DVGsgSOJg#_)~<(qW)hvbrsr4s*3{*)zb~4-yZJ z`UXI1L4sr@g>$0jTl5^j4uS;RX4-h8b!(fw05m*~`@gH(@!vkd4gU!D4g3}$%^)Fv zcWfW%yP!RZKySJG2ckvrbvht{0}|NRa!0>&D4&?@Lz&4@Bm0VfVx#-Vt-2@l{2l4O zv#yqb1~ne6_zNCJANPTz1>V+j>&t6Q*n z&d5*DK6hHYzFOQoBL?*MCt>;-G)>54gWPb(EjTutigfS{b`{*{x2x_VxIs2 literal 0 HcmV?d00001 diff --git a/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Form1.resources b/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Form1.resources new file mode 100644 index 0000000000000000000000000000000000000000..6c05a9776bd7cbae976fdcec7e3a254e93018279 GIT binary patch literal 180 zcmX?i>is@O1_p+SK%5g?SzMBus~417oL^d$oLUTL1*ImYq!#HYR*8GxXUf^%t3Noi54ZC+|=Nl{{sjzU0bQch;FcWPxwes*e}ZIZcpqG__J onW3ezNveT`r81^vrFkWpxv4PQgHubGfR2KJ07n-P+5+SQ04Y>DD*ylh literal 0 HcmV?d00001 diff --git a/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Properties.Resources.resources b/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Properties.Resources.resources new file mode 100644 index 0000000000000000000000000000000000000000..6c05a9776bd7cbae976fdcec7e3a254e93018279 GIT binary patch literal 180 zcmX?i>is@O1_p+SK%5g?SzMBus~417oL^d$oLUTL1*ImYq!#HYR*8GxXUf^%t3Noi54ZC+|=Nl{{sjzU0bQch;FcWPxwes*e}ZIZcpqG__J onW3ezNveT`r81^vrFkWpxv4PQgHubGfR2KJ07n-P+5+SQ04Y>DD*ylh literal 0 HcmV?d00001 diff --git a/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.AssemblyReference.cache b/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..f5e894aea93a73e58fa9d4feab241bc197ee1a40 GIT binary patch literal 11 QcmeZu3JP{+WMlvW01Ze1dH?_b literal 0 HcmV?d00001 diff --git a/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.CoreCompileInputs.cache b/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4a5524a --- /dev/null +++ b/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8069502011d0681850e57a53d5a1673222f430a6 diff --git a/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.FileListAbsolute.txt b/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5974290 --- /dev/null +++ b/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Users\szabomarton\Desktop\C#\20240226\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.exe.config +C:\Users\szabomarton\Desktop\C#\20240226\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.exe +C:\Users\szabomarton\Desktop\C#\20240226\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.pdb +C:\Users\szabomarton\Desktop\C#\20240226\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.csproj.AssemblyReference.cache +C:\Users\szabomarton\Desktop\C#\20240226\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.Form1.resources +C:\Users\szabomarton\Desktop\C#\20240226\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.Properties.Resources.resources +C:\Users\szabomarton\Desktop\C#\20240226\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.csproj.GenerateResource.cache +C:\Users\szabomarton\Desktop\C#\20240226\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.csproj.CoreCompileInputs.cache +C:\Users\szabomarton\Desktop\C#\20240226\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.exe +C:\Users\szabomarton\Desktop\C#\20240226\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.pdb diff --git a/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.GenerateResource.cache b/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.GenerateResource.cache new file mode 100644 index 0000000000000000000000000000000000000000..330434324ac9d73f6384d858ad592cab6e3b06a2 GIT binary patch literal 1012 zcma)4!EVz)5VadSiJcUjLscO-1jGT9$i%8bxkN}!6)3b)Ayvfzf!5x!SY_jlcGsxk z3-}wPeh;6(KfsLDR#j`E&SAVe^LF06@i?yIIDgUTOV-^$_vJ`rS{aqwc&`+a$0y7z zOgvQ@hW%5}MyO(vjN>F8#iL<=T1s1Lm=sW2&E&9uT&7ZF?_qtS7Enym(M~?jck?9S z;}P3oK9N1E=lBTb4HWyZf`UVl2{0al0}bZWOh_=jmC}}_5)MVGna2Ef$_(C$1#m*_ z3k{i7dflH}W`RO`2pD`dpaqlS2k;98p65DG>btnkPXoClY=f{tgB*1o`aYfS@R$bD z<<~?v9?jRr!V+gLCF;R}oA@m=-zx1DjgN0!qN(_rcuHUGgIo3ge0cSm zdJn@&1~nM8(YX{PJp{ndB_P0K5Tc6+N`q*2(1kOlmr0Cka@OqP{Q(MCfws6GpK+yB zsWUKDI-=^;05|av+(Q>pQL=~%llhcO>UZPzh7K@PZ72PWj=Wk$vwgKkYudv>j;>%! zcz7c&nXyNTi(CNTx{-r3VXSH5hHSc3+xL+qAkF&mdF%Y;@1L$qA}TdK%8~weFP;~_ NDAyx6S&wpLoqvIz6`=qC literal 0 HcmV?d00001 diff --git a/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.exe b/20240226/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.exe new file mode 100644 index 0000000000000000000000000000000000000000..7a4f22f7d2b81476feacfba51c3ae4151281e9c5 GIT binary patch literal 9728 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 literal 0 HcmV?d00001 diff --git a/20240226/WindowsFormsApp2/.vs/WindowsFormsApp2/v16/.suo b/20240226/WindowsFormsApp2/.vs/WindowsFormsApp2/v16/.suo new file mode 100644 index 0000000000000000000000000000000000000000..84afdbf677eb1d67020823a024929c9de0632cee GIT binary patch literal 34816 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 literal 0 HcmV?d00001 diff --git a/20240226/WindowsFormsApp2/App.config b/20240226/WindowsFormsApp2/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/20240226/WindowsFormsApp2/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/20240226/WindowsFormsApp2/Form1.Designer.cs b/20240226/WindowsFormsApp2/Form1.Designer.cs new file mode 100644 index 0000000..db3cf4d --- /dev/null +++ b/20240226/WindowsFormsApp2/Form1.Designer.cs @@ -0,0 +1,163 @@ + +namespace WindowsFormsApp2 +{ + 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.checkBox1 = new System.Windows.Forms.CheckBox(); + this.checkBox2 = new System.Windows.Forms.CheckBox(); + this.checkBox3 = new System.Windows.Forms.CheckBox(); + this.radioButton1 = new System.Windows.Forms.RadioButton(); + this.radioButton2 = new System.Windows.Forms.RadioButton(); + this.radioButton3 = new System.Windows.Forms.RadioButton(); + this.button1 = new System.Windows.Forms.Button(); + this.label1 = new System.Windows.Forms.Label(); + this.SuspendLayout(); + // + // checkBox1 + // + this.checkBox1.AutoSize = true; + this.checkBox1.Location = new System.Drawing.Point(45, 105); + this.checkBox1.Name = "checkBox1"; + this.checkBox1.Size = new System.Drawing.Size(80, 17); + this.checkBox1.TabIndex = 0; + this.checkBox1.Text = "checkBox1"; + this.checkBox1.UseVisualStyleBackColor = true; + this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); + // + // checkBox2 + // + this.checkBox2.AutoSize = true; + this.checkBox2.Location = new System.Drawing.Point(45, 128); + this.checkBox2.Name = "checkBox2"; + this.checkBox2.Size = new System.Drawing.Size(80, 17); + this.checkBox2.TabIndex = 1; + this.checkBox2.Text = "checkBox2"; + this.checkBox2.UseVisualStyleBackColor = true; + this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged); + // + // checkBox3 + // + this.checkBox3.AutoSize = true; + this.checkBox3.Location = new System.Drawing.Point(45, 151); + this.checkBox3.Name = "checkBox3"; + this.checkBox3.Size = new System.Drawing.Size(80, 17); + this.checkBox3.TabIndex = 2; + this.checkBox3.Text = "checkBox3"; + this.checkBox3.UseVisualStyleBackColor = true; + this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged); + // + // radioButton1 + // + this.radioButton1.AutoSize = true; + this.radioButton1.Location = new System.Drawing.Point(178, 104); + this.radioButton1.Name = "radioButton1"; + this.radioButton1.Size = new System.Drawing.Size(85, 17); + this.radioButton1.TabIndex = 3; + this.radioButton1.TabStop = true; + this.radioButton1.Text = "radioButton1"; + this.radioButton1.UseVisualStyleBackColor = true; + this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged); + // + // radioButton2 + // + this.radioButton2.AutoSize = true; + this.radioButton2.Location = new System.Drawing.Point(178, 127); + this.radioButton2.Name = "radioButton2"; + this.radioButton2.Size = new System.Drawing.Size(85, 17); + this.radioButton2.TabIndex = 4; + this.radioButton2.TabStop = true; + this.radioButton2.Text = "radioButton2"; + this.radioButton2.UseVisualStyleBackColor = true; + this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged); + // + // radioButton3 + // + this.radioButton3.AutoSize = true; + this.radioButton3.Location = new System.Drawing.Point(178, 151); + this.radioButton3.Name = "radioButton3"; + this.radioButton3.Size = new System.Drawing.Size(85, 17); + this.radioButton3.TabIndex = 5; + this.radioButton3.TabStop = true; + this.radioButton3.Text = "radioButton3"; + this.radioButton3.UseVisualStyleBackColor = true; + this.radioButton3.CheckedChanged += new System.EventHandler(this.radioButton3_CheckedChanged); + // + // button1 + // + this.button1.Location = new System.Drawing.Point(304, 151); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(75, 23); + this.button1.TabIndex = 6; + this.button1.Text = "button1"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(463, 160); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(35, 13); + this.label1.TabIndex = 7; + this.label1.Text = "label1"; + this.label1.Click += new System.EventHandler(this.label1_Click); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Controls.Add(this.label1); + this.Controls.Add(this.button1); + this.Controls.Add(this.radioButton3); + this.Controls.Add(this.radioButton2); + this.Controls.Add(this.radioButton1); + this.Controls.Add(this.checkBox3); + this.Controls.Add(this.checkBox2); + this.Controls.Add(this.checkBox1); + this.Name = "Form1"; + this.Text = "Form1"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.CheckBox checkBox1; + private System.Windows.Forms.CheckBox checkBox2; + private System.Windows.Forms.CheckBox checkBox3; + private System.Windows.Forms.RadioButton radioButton1; + private System.Windows.Forms.RadioButton radioButton2; + private System.Windows.Forms.RadioButton radioButton3; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.Label label1; + } +} + diff --git a/20240226/WindowsFormsApp2/Form1.cs b/20240226/WindowsFormsApp2/Form1.cs new file mode 100644 index 0000000..49b4fcf --- /dev/null +++ b/20240226/WindowsFormsApp2/Form1.cs @@ -0,0 +1,59 @@ +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 WindowsFormsApp2 +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + private void checkBox1_CheckedChanged(object sender, EventArgs e) + { + + } + + private void checkBox2_CheckedChanged(object sender, EventArgs e) + { + + } + + private void checkBox3_CheckedChanged(object sender, EventArgs e) + { + + } + + private void radioButton1_CheckedChanged(object sender, EventArgs e) + { + + } + + private void radioButton2_CheckedChanged(object sender, EventArgs e) + { + + } + + private void radioButton3_CheckedChanged(object sender, EventArgs e) + { + + } + + private void label1_Click(object sender, EventArgs e) + { + + } + private void button1_Click(object sender, EventArgs e) + { + + } + } +} diff --git a/20240226/WindowsFormsApp2/Form1.resx b/20240226/WindowsFormsApp2/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/20240226/WindowsFormsApp2/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/20240226/WindowsFormsApp2/Program.cs b/20240226/WindowsFormsApp2/Program.cs new file mode 100644 index 0000000..b187573 --- /dev/null +++ b/20240226/WindowsFormsApp2/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace WindowsFormsApp2 +{ + 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/20240226/WindowsFormsApp2/Properties/AssemblyInfo.cs b/20240226/WindowsFormsApp2/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..dac8219 --- /dev/null +++ b/20240226/WindowsFormsApp2/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("WindowsFormsApp2")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("WindowsFormsApp2")] +[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("6e7f25a3-9350-4868-a6d5-9fcfa7f79570")] + +// 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/20240226/WindowsFormsApp2/Properties/Resources.Designer.cs b/20240226/WindowsFormsApp2/Properties/Resources.Designer.cs new file mode 100644 index 0000000..fedadbe --- /dev/null +++ b/20240226/WindowsFormsApp2/Properties/Resources.Designer.cs @@ -0,0 +1,70 @@ +//------------------------------------------------------------------------------ +// +// 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 WindowsFormsApp2.Properties +{ + /// + /// 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", "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() + { + } + + /// + /// 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 ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WindowsFormsApp2.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; + } + } + } +} diff --git a/20240226/WindowsFormsApp2/Properties/Resources.resx b/20240226/WindowsFormsApp2/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/20240226/WindowsFormsApp2/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/20240226/WindowsFormsApp2/Properties/Settings.Designer.cs b/20240226/WindowsFormsApp2/Properties/Settings.Designer.cs new file mode 100644 index 0000000..fec7aa7 --- /dev/null +++ b/20240226/WindowsFormsApp2/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 WindowsFormsApp2.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/20240226/WindowsFormsApp2/Properties/Settings.settings b/20240226/WindowsFormsApp2/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/20240226/WindowsFormsApp2/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/20240226/WindowsFormsApp2/WindowsFormsApp2.csproj b/20240226/WindowsFormsApp2/WindowsFormsApp2.csproj new file mode 100644 index 0000000..c900040 --- /dev/null +++ b/20240226/WindowsFormsApp2/WindowsFormsApp2.csproj @@ -0,0 +1,83 @@ + + + + + Debug + AnyCPU + {6E7F25A3-9350-4868-A6D5-9FCFA7F79570} + WinExe + WindowsFormsApp2 + WindowsFormsApp2 + 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 + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/20240226/WindowsFormsApp2/WindowsFormsApp2.sln b/20240226/WindowsFormsApp2/WindowsFormsApp2.sln new file mode 100644 index 0000000..e1766c3 --- /dev/null +++ b/20240226/WindowsFormsApp2/WindowsFormsApp2.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}") = "WindowsFormsApp2", "WindowsFormsApp2.csproj", "{6E7F25A3-9350-4868-A6D5-9FCFA7F79570}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6E7F25A3-9350-4868-A6D5-9FCFA7F79570}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6E7F25A3-9350-4868-A6D5-9FCFA7F79570}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6E7F25A3-9350-4868-A6D5-9FCFA7F79570}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6E7F25A3-9350-4868-A6D5-9FCFA7F79570}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {DAF4E80D-95A3-43EE-8817-698A7602E5E0} + EndGlobalSection +EndGlobal diff --git a/20240226/WindowsFormsApp2/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/20240226/WindowsFormsApp2/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/20240226/WindowsFormsApp2/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/20240226/WindowsFormsApp2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/20240226/WindowsFormsApp2/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000000000000000000000000000000000000..7e02cb489c40796b5489a1e22c9831bba17ccd9a GIT binary patch literal 7228 zcmeHMZBH9V5VpZ=FoYCSN(dyW)1+wu0N8$suaf6y5WILo1w#fQ!Z5Hls-Q7Km zgZM4|1yz4yJ9B>HEwn;Di4Q*H@v$%S?99#XJu?o4L!r<=aN##z_lH1O@3<+25>;*N za^+FGpgoHVBO@F~xLeuHM0}S?#f7_`S~imSmxyOPTYHkNyUf#)+KKp%SFySI8*3KD z5p&lo$%X1tb)}k0SxZT}Kt~XA^)pDnc-*!SZ_Cw8iuwmh>vblLJe6B+-P7t3OnyXd zTQr!pp%il}c60MYGZ$B-CSY_%xK&=uahuJU)U~)pHS3JTRyAMsY&$2Z!x};!b-IeQ z0)5jL`f|dyz}~0WSfsMXbaz_8t0<MyvE?ca>+7wqrTB-N2es6- zhCbxit9Wvy{rs%B4R$JhX_;9rnW=^3Oik7;O=W>mX&&rQeV`_5mm0?FQdGf1Xw{Tt zHLkR5_9jHZFwM|~bD-$FGtQyRT}cWsRLH*(>m_xQiJeAxxa3`aQaW8^-_5SajxJE+S~?pmUuazZ+4qh3#!MCA|$ zR=gSx2j*D>c9dsI*vDNe+@nHFPy#2&+F}>L6`txFxlv*zB4Ky-^11jsjpB@7o4Fs-3M}3$l0AmFL z)8)&O`AAOz={QKFEY;LN0a4IP9DVGsgSOJg#_)~<(qW)hvbrsr4s*3{*)zb~4-yZJ z`UXI1L4sr@g>$0jTl5^j4uS;RX4-h8b!(fw05m*~`@gH(@!vkd4gU!D4g3}$%^)Fv zcWfW%yP!RZKySJG2ckvrbvht{0}|NRa!0>&D4&?@Lz&4@Bm0VfVx#-Vt-2@l{2l4O zv#yqb1~ne6_zNCJANPTz1>V+j>&t6Q*n z&d5*DK6hHYzFOQoBL?*MCt>;-G)>54gWPb(EjTutigfS{b`{*{x4dtVxs^6 literal 0 HcmV?d00001 diff --git a/form_anyag b/form_anyag index a40e54e..0b38ded 100644 --- a/form_anyag +++ b/form_anyag @@ -115,3 +115,49 @@ Az első paraméter az üzenetdobozban megjelenő szöveg. NMásodik címsor. Hatmadik nyomogomb. negyedik ikon. + + +Választógomb (RadioButton) + +Két állapota lehet. +Lehet őket csoportosítani, így a csoport közül lehet csak egyet választani. + +tulajdonság érték leírás +CheckAlign TopLeft...MiddleCenter...BottomRight Pozicionálás +Appearance bool Felirat megjelenés, akkor érdemes ha az AutoSize ki van kapcsolva. Ilyenkor ha nem fér el ... ot jelez. + +Jelölőnégyzet (CheckBox) + +Két vagy három állapota lehet. Indeterminate a harmadik + +Ha kétállapotúként akarjuk használni akkor simán Checked tulajdonsággal kell megállapítani. + +Harmadik állapothoz a ThreeState tulajdonságot true ra állítjuk. +Ezek után a CheckState tulajdonságnál tudjuk az állapotot beállítani. + +Tulajdonság érték leírás +Checked bool bejelölték e, két állapotnál + +ThreeState bool Default False + +CheckState Unchecked Három állapotnál alkalmazandó + Checked + Indeterminate + +A checkbox legtöbb tulajdonsága megegyezik a rádiógombéval. +Mindkét vezérlő esetén alapértelmezett és legfontosabb esemény a CheckChanged, állapotváltozáskor aktiválódik. + + +Csoportmező GroupBox, Panel +Ez a két konténer valósítja meg a csoportosításokat. +A checkboxnál különösen fontos. + +A csoportmező és a panel között megjelenésbeli különbség van. +A csoportmezőnek alapértelmezetten van felirata és szegélye. +A panelnak nincs felirata és szegélye, de beállítható és lehet görgetősávot hozzáadni. + +Tulajdonság GroupBox Panel +Text van Nincs +BorderStyle nincs, szegély van van default:none +AutoScroll Nincs Van +