diff options
26 files changed, 878 insertions, 0 deletions
diff --git a/name_formatter/Name Formatter.sln b/name_formatter/Name Formatter.sln new file mode 100644 index 0000000..3b6a1b5 --- /dev/null +++ b/name_formatter/Name Formatter.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.7.34009.444 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Name Formatter", "Name Formatter\Name Formatter.csproj", "{96160F08-A8B7-4054-A9E8-98970061291A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {96160F08-A8B7-4054-A9E8-98970061291A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {96160F08-A8B7-4054-A9E8-98970061291A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {96160F08-A8B7-4054-A9E8-98970061291A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {96160F08-A8B7-4054-A9E8-98970061291A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {19A23A6A-9C3B-44B5-B815-3271F4E9F46F} + EndGlobalSection +EndGlobal diff --git a/name_formatter/Name Formatter/App.config b/name_formatter/Name Formatter/App.config new file mode 100644 index 0000000..5754728 --- /dev/null +++ b/name_formatter/Name Formatter/App.config @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" ?> +<configuration> + <startup> + <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> + </startup> +</configuration> \ No newline at end of file diff --git a/name_formatter/Name Formatter/Form1.Designer.cs b/name_formatter/Name Formatter/Form1.Designer.cs new file mode 100644 index 0000000..fbc76bf --- /dev/null +++ b/name_formatter/Name Formatter/Form1.Designer.cs @@ -0,0 +1,265 @@ +namespace Name_Formatter +{ + partial class nameFormatter + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.instructionLabel = new System.Windows.Forms.Label(); + this.firstButton = new System.Windows.Forms.Button(); + this.secondButton = new System.Windows.Forms.Button(); + this.thirdButton = new System.Windows.Forms.Button(); + this.forthButton = new System.Windows.Forms.Button(); + this.fifthButton = new System.Windows.Forms.Button(); + this.sixthButton = new System.Windows.Forms.Button(); + this.outputLabel = new System.Windows.Forms.Label(); + this.exitButton = new System.Windows.Forms.Button(); + this.clearButton = new System.Windows.Forms.Button(); + this.titleLabel = new System.Windows.Forms.Label(); + this.lastNameLabel = new System.Windows.Forms.Label(); + this.middleNameLabel = new System.Windows.Forms.Label(); + this.firstNameLabel = new System.Windows.Forms.Label(); + this.titleTextBox = new System.Windows.Forms.TextBox(); + this.lastNameTextBox = new System.Windows.Forms.TextBox(); + this.middleNameTextBox = new System.Windows.Forms.TextBox(); + this.firstNameTextBox = new System.Windows.Forms.TextBox(); + this.SuspendLayout(); + // + // instructionLabel + // + this.instructionLabel.AutoSize = true; + this.instructionLabel.Location = new System.Drawing.Point(30, 9); + this.instructionLabel.Name = "instructionLabel"; + this.instructionLabel.Size = new System.Drawing.Size(304, 16); + this.instructionLabel.TabIndex = 0; + this.instructionLabel.Text = "Fill out the boxes, then click the 1 through 6 buttons."; + // + // firstButton + // + this.firstButton.Location = new System.Drawing.Point(70, 166); + this.firstButton.Name = "firstButton"; + this.firstButton.Size = new System.Drawing.Size(38, 28); + this.firstButton.TabIndex = 9; + this.firstButton.Text = "1"; + this.firstButton.UseVisualStyleBackColor = true; + this.firstButton.Click += new System.EventHandler(this.firstButton_Click); + // + // secondButton + // + this.secondButton.Location = new System.Drawing.Point(114, 166); + this.secondButton.Name = "secondButton"; + this.secondButton.Size = new System.Drawing.Size(34, 28); + this.secondButton.TabIndex = 10; + this.secondButton.Text = "2"; + this.secondButton.UseVisualStyleBackColor = true; + this.secondButton.Click += new System.EventHandler(this.secondButton_Click); + // + // thirdButton + // + this.thirdButton.Location = new System.Drawing.Point(154, 166); + this.thirdButton.Name = "thirdButton"; + this.thirdButton.Size = new System.Drawing.Size(37, 28); + this.thirdButton.TabIndex = 11; + this.thirdButton.Text = "3"; + this.thirdButton.UseVisualStyleBackColor = true; + this.thirdButton.Click += new System.EventHandler(this.thirdButton_Click); + // + // forthButton + // + this.forthButton.Location = new System.Drawing.Point(197, 166); + this.forthButton.Name = "forthButton"; + this.forthButton.Size = new System.Drawing.Size(38, 28); + this.forthButton.TabIndex = 12; + this.forthButton.Text = "4"; + this.forthButton.UseVisualStyleBackColor = true; + this.forthButton.Click += new System.EventHandler(this.forthButton_Click); + // + // fifthButton + // + this.fifthButton.Location = new System.Drawing.Point(241, 166); + this.fifthButton.Name = "fifthButton"; + this.fifthButton.Size = new System.Drawing.Size(34, 28); + this.fifthButton.TabIndex = 13; + this.fifthButton.Text = "5"; + this.fifthButton.UseVisualStyleBackColor = true; + this.fifthButton.Click += new System.EventHandler(this.fifthButton_Click); + // + // sixthButton + // + this.sixthButton.Location = new System.Drawing.Point(281, 166); + this.sixthButton.Name = "sixthButton"; + this.sixthButton.Size = new System.Drawing.Size(37, 28); + this.sixthButton.TabIndex = 14; + this.sixthButton.Text = "6"; + this.sixthButton.UseVisualStyleBackColor = true; + this.sixthButton.Click += new System.EventHandler(this.sixthButton_Click); + // + // outputLabel + // + this.outputLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.outputLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.outputLabel.Location = new System.Drawing.Point(45, 208); + this.outputLabel.Name = "outputLabel"; + this.outputLabel.Size = new System.Drawing.Size(300, 35); + this.outputLabel.TabIndex = 15; + this.outputLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // exitButton + // + this.exitButton.Location = new System.Drawing.Point(196, 256); + this.exitButton.Name = "exitButton"; + this.exitButton.Size = new System.Drawing.Size(75, 34); + this.exitButton.TabIndex = 17; + this.exitButton.Text = "Exit"; + this.exitButton.UseVisualStyleBackColor = true; + this.exitButton.Click += new System.EventHandler(this.exitButton_Click); + // + // clearButton + // + this.clearButton.Location = new System.Drawing.Point(106, 256); + this.clearButton.Name = "clearButton"; + this.clearButton.Size = new System.Drawing.Size(75, 34); + this.clearButton.TabIndex = 16; + this.clearButton.Text = "Clear"; + this.clearButton.UseVisualStyleBackColor = true; + this.clearButton.Click += new System.EventHandler(this.clearButton_Click); + // + // titleLabel + // + this.titleLabel.AutoSize = true; + this.titleLabel.Location = new System.Drawing.Point(57, 48); + this.titleLabel.Name = "titleLabel"; + this.titleLabel.Size = new System.Drawing.Size(151, 16); + this.titleLabel.TabIndex = 1; + this.titleLabel.Text = "Enter your preferred title:"; + // + // lastNameLabel + // + this.lastNameLabel.AutoSize = true; + this.lastNameLabel.Location = new System.Drawing.Point(77, 129); + this.lastNameLabel.Name = "lastNameLabel"; + this.lastNameLabel.Size = new System.Drawing.Size(131, 16); + this.lastNameLabel.TabIndex = 7; + this.lastNameLabel.Text = "Enter your last name:"; + // + // middleNameLabel + // + this.middleNameLabel.AutoSize = true; + this.middleNameLabel.Location = new System.Drawing.Point(57, 101); + this.middleNameLabel.Name = "middleNameLabel"; + this.middleNameLabel.Size = new System.Drawing.Size(151, 16); + this.middleNameLabel.TabIndex = 5; + this.middleNameLabel.Text = "Enter your middle name:"; + // + // firstNameLabel + // + this.firstNameLabel.AutoSize = true; + this.firstNameLabel.Location = new System.Drawing.Point(78, 76); + this.firstNameLabel.Name = "firstNameLabel"; + this.firstNameLabel.Size = new System.Drawing.Size(130, 16); + this.firstNameLabel.TabIndex = 3; + this.firstNameLabel.Text = "Enter your first name:"; + // + // titleTextBox + // + this.titleTextBox.Location = new System.Drawing.Point(223, 45); + this.titleTextBox.Name = "titleTextBox"; + this.titleTextBox.Size = new System.Drawing.Size(100, 22); + this.titleTextBox.TabIndex = 2; + // + // lastNameTextBox + // + this.lastNameTextBox.Location = new System.Drawing.Point(223, 129); + this.lastNameTextBox.Name = "lastNameTextBox"; + this.lastNameTextBox.Size = new System.Drawing.Size(100, 22); + this.lastNameTextBox.TabIndex = 8; + // + // middleNameTextBox + // + this.middleNameTextBox.Location = new System.Drawing.Point(223, 101); + this.middleNameTextBox.Name = "middleNameTextBox"; + this.middleNameTextBox.Size = new System.Drawing.Size(100, 22); + this.middleNameTextBox.TabIndex = 6; + // + // firstNameTextBox + // + this.firstNameTextBox.Location = new System.Drawing.Point(223, 73); + this.firstNameTextBox.Name = "firstNameTextBox"; + this.firstNameTextBox.Size = new System.Drawing.Size(100, 22); + this.firstNameTextBox.TabIndex = 4; + // + // nameFormatter + // + this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(382, 303); + this.Controls.Add(this.titleLabel); + this.Controls.Add(this.lastNameLabel); + this.Controls.Add(this.middleNameLabel); + this.Controls.Add(this.firstNameLabel); + this.Controls.Add(this.titleTextBox); + this.Controls.Add(this.lastNameTextBox); + this.Controls.Add(this.middleNameTextBox); + this.Controls.Add(this.firstNameTextBox); + this.Controls.Add(this.clearButton); + this.Controls.Add(this.exitButton); + this.Controls.Add(this.outputLabel); + this.Controls.Add(this.sixthButton); + this.Controls.Add(this.fifthButton); + this.Controls.Add(this.forthButton); + this.Controls.Add(this.thirdButton); + this.Controls.Add(this.secondButton); + this.Controls.Add(this.firstButton); + this.Controls.Add(this.instructionLabel); + this.Name = "nameFormatter"; + this.Text = "Name Formatter"; + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Label instructionLabel; + private System.Windows.Forms.Button firstButton; + private System.Windows.Forms.Button secondButton; + private System.Windows.Forms.Button thirdButton; + private System.Windows.Forms.Button forthButton; + private System.Windows.Forms.Button fifthButton; + private System.Windows.Forms.Button sixthButton; + private System.Windows.Forms.Label outputLabel; + private System.Windows.Forms.Button exitButton; + private System.Windows.Forms.Button clearButton; + private System.Windows.Forms.Label titleLabel; + private System.Windows.Forms.Label lastNameLabel; + private System.Windows.Forms.Label middleNameLabel; + private System.Windows.Forms.Label firstNameLabel; + private System.Windows.Forms.TextBox titleTextBox; + private System.Windows.Forms.TextBox lastNameTextBox; + private System.Windows.Forms.TextBox middleNameTextBox; + private System.Windows.Forms.TextBox firstNameTextBox; + } +} + diff --git a/name_formatter/Name Formatter/Form1.cs b/name_formatter/Name Formatter/Form1.cs new file mode 100644 index 0000000..737b4b8 --- /dev/null +++ b/name_formatter/Name Formatter/Form1.cs @@ -0,0 +1,75 @@ +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 Name_Formatter +{ + public partial class nameFormatter : Form + { + public nameFormatter() + { + InitializeComponent(); + } + + private void firstButton_Click(object sender, EventArgs e) + { + outputLabel.Text = titleTextBox.Text + " " + + firstNameTextBox.Text + " " + + middleNameTextBox.Text + " " + + lastNameTextBox.Text; + } + + private void secondButton_Click(object sender, EventArgs e) + { + outputLabel.Text = firstNameTextBox.Text + " " + + middleNameTextBox.Text + " " + + lastNameTextBox.Text; + } + + private void thirdButton_Click(object sender, EventArgs e) + { + outputLabel.Text = firstNameTextBox.Text + " " + + lastNameTextBox.Text; + } + + private void forthButton_Click(object sender, EventArgs e) + { + outputLabel.Text = lastNameTextBox.Text + ", " + + firstNameTextBox.Text + " " + + middleNameTextBox.Text + ", " + + titleTextBox.Text; + } + + private void fifthButton_Click(object sender, EventArgs e) + { + outputLabel.Text = lastNameTextBox.Text + ", " + + firstNameTextBox.Text + " " + + middleNameTextBox.Text; + } + + private void sixthButton_Click(object sender, EventArgs e) + { + outputLabel.Text = lastNameTextBox.Text + ", " + + firstNameTextBox.Text; + } + + private void clearButton_Click(object sender, EventArgs e) + { + titleTextBox.Text = ""; + firstNameTextBox.Text = ""; + middleNameTextBox.Text = ""; + lastNameTextBox.Text = ""; + outputLabel.Text = ""; + } + private void exitButton_Click(object sender, EventArgs e) + { + this.Close(); + } + } +} diff --git a/name_formatter/Name Formatter/Form1.resx b/name_formatter/Name Formatter/Form1.resx new file mode 100644 index 0000000..29dcb1b --- /dev/null +++ b/name_formatter/Name Formatter/Form1.resx @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root> \ No newline at end of file diff --git a/name_formatter/Name Formatter/Name Formatter.csproj b/name_formatter/Name Formatter/Name Formatter.csproj new file mode 100644 index 0000000..16bed3b --- /dev/null +++ b/name_formatter/Name Formatter/Name Formatter.csproj @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProjectGuid>{96160F08-A8B7-4054-A9E8-98970061291A}</ProjectGuid> + <OutputType>WinExe</OutputType> + <RootNamespace>Name_Formatter</RootNamespace> + <AssemblyName>Name Formatter</AssemblyName> + <TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion> + <FileAlignment>512</FileAlignment> + <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> + <Deterministic>true</Deterministic> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <PlatformTarget>AnyCPU</PlatformTarget> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <OutputPath>bin\Debug\</OutputPath> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + <PlatformTarget>AnyCPU</PlatformTarget> + <DebugType>pdbonly</DebugType> + <Optimize>true</Optimize> + <OutputPath>bin\Release\</OutputPath> + <DefineConstants>TRACE</DefineConstants> + <ErrorReport>prompt</ErrorReport> + <WarningLevel>4</WarningLevel> + </PropertyGroup> + <ItemGroup> + <Reference Include="System" /> + <Reference Include="System.Core" /> + <Reference Include="System.Xml.Linq" /> + <Reference Include="System.Data.DataSetExtensions" /> + <Reference Include="Microsoft.CSharp" /> + <Reference Include="System.Data" /> + <Reference Include="System.Deployment" /> + <Reference Include="System.Drawing" /> + <Reference Include="System.Net.Http" /> + <Reference Include="System.Windows.Forms" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="Form1.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="Form1.Designer.cs"> + <DependentUpon>Form1.cs</DependentUpon> + </Compile> + <Compile Include="Program.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + <EmbeddedResource Include="Form1.resx"> + <DependentUpon>Form1.cs</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="Properties\Resources.resx"> + <Generator>ResXFileCodeGenerator</Generator> + <LastGenOutput>Resources.Designer.cs</LastGenOutput> + <SubType>Designer</SubType> + </EmbeddedResource> + <Compile Include="Properties\Resources.Designer.cs"> + <AutoGen>True</AutoGen> + <DependentUpon>Resources.resx</DependentUpon> + </Compile> + <None Include="Properties\Settings.settings"> + <Generator>SettingsSingleFileGenerator</Generator> + <LastGenOutput>Settings.Designer.cs</LastGenOutput> + </None> + <Compile Include="Properties\Settings.Designer.cs"> + <AutoGen>True</AutoGen> + <DependentUpon>Settings.settings</DependentUpon> + <DesignTimeSharedInput>True</DesignTimeSharedInput> + </Compile> + </ItemGroup> + <ItemGroup> + <None Include="App.config" /> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> +</Project> \ No newline at end of file diff --git a/name_formatter/Name Formatter/Program.cs b/name_formatter/Name Formatter/Program.cs new file mode 100644 index 0000000..536359f --- /dev/null +++ b/name_formatter/Name Formatter/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Name_Formatter +{ + internal static class Program + { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new nameFormatter()); + } + } +} diff --git a/name_formatter/Name Formatter/Properties/AssemblyInfo.cs b/name_formatter/Name Formatter/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..792faa6 --- /dev/null +++ b/name_formatter/Name Formatter/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("Name Formatter")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Name Formatter")] +[assembly: AssemblyCopyright("Copyright © 2023")] +[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("96160f08-a8b7-4054-a9e8-98970061291a")] + +// 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/name_formatter/Name Formatter/Properties/Resources.Designer.cs b/name_formatter/Name Formatter/Properties/Resources.Designer.cs new file mode 100644 index 0000000..0b9a67f --- /dev/null +++ b/name_formatter/Name Formatter/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// 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. +// </auto-generated> +//------------------------------------------------------------------------------ + +namespace Name_Formatter.Properties +{ + + + /// <summary> + /// A strongly-typed resource class, for looking up localized strings, etc. + /// </summary> + // 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() + { + } + + /// <summary> + /// Returns the cached ResourceManager instance used by this class. + /// </summary> + [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("Name_Formatter.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// <summary> + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// </summary> + [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/name_formatter/Name Formatter/Properties/Resources.resx b/name_formatter/Name Formatter/Properties/Resources.resx new file mode 100644 index 0000000..ffecec8 --- /dev/null +++ b/name_formatter/Name Formatter/Properties/Resources.resx @@ -0,0 +1,117 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root> \ No newline at end of file diff --git a/name_formatter/Name Formatter/Properties/Settings.Designer.cs b/name_formatter/Name Formatter/Properties/Settings.Designer.cs new file mode 100644 index 0000000..1e9d927 --- /dev/null +++ b/name_formatter/Name Formatter/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// <auto-generated> +// 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. +// </auto-generated> +//------------------------------------------------------------------------------ + +namespace Name_Formatter.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/name_formatter/Name Formatter/Properties/Settings.settings b/name_formatter/Name Formatter/Properties/Settings.settings new file mode 100644 index 0000000..abf36c5 --- /dev/null +++ b/name_formatter/Name Formatter/Properties/Settings.settings @@ -0,0 +1,7 @@ +<?xml version='1.0' encoding='utf-8'?> +<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)"> + <Profiles> + <Profile Name="(Default)" /> + </Profiles> + <Settings /> +</SettingsFile> diff --git a/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe b/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe new file mode 100644 index 0000000..6f3c073 --- /dev/null +++ b/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe Binary files differdiff --git a/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe.config b/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe.config new file mode 100644 index 0000000..5754728 --- /dev/null +++ b/name_formatter/Name Formatter/bin/Debug/Name Formatter.exe.config @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="utf-8" ?> +<configuration> + <startup> + <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> + </startup> +</configuration> \ No newline at end of file diff --git a/name_formatter/Name Formatter/bin/Debug/Name Formatter.pdb b/name_formatter/Name Formatter/bin/Debug/Name Formatter.pdb new file mode 100644 index 0000000..add9cce --- /dev/null +++ b/name_formatter/Name Formatter/bin/Debug/Name Formatter.pdb Binary files differdiff --git a/name_formatter/Name Formatter/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/name_formatter/Name Formatter/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..057ed7f --- /dev/null +++ b/name_formatter/Name Formatter/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// <autogenerated /> +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/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..10a1a65 --- /dev/null +++ b/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferences.cache Binary files differdiff --git a/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..0313c7b --- /dev/null +++ b/name_formatter/Name Formatter/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache Binary files differdiff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.AssemblyReference.cache b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.AssemblyReference.cache new file mode 100644 index 0000000..25ff1ca --- /dev/null +++ b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.AssemblyReference.cache Binary files differdiff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.CoreCompileInputs.cache b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..bfe380c --- /dev/null +++ b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8069502011d0681850e57a53d5a1673222f430a6 diff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.FileListAbsolute.txt b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..7fa4c45 --- /dev/null +++ b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Users\User\source\repos\Name Formatter\Name Formatter\bin\Debug\Name Formatter.exe.config +C:\Users\User\source\repos\Name Formatter\Name Formatter\bin\Debug\Name Formatter.exe +C:\Users\User\source\repos\Name Formatter\Name Formatter\bin\Debug\Name Formatter.pdb +C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name Formatter.csproj.AssemblyReference.cache +C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name_Formatter.nameFormatter.resources +C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name_Formatter.Properties.Resources.resources +C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name Formatter.csproj.GenerateResource.cache +C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name Formatter.csproj.CoreCompileInputs.cache +C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name Formatter.exe +C:\Users\User\source\repos\Name Formatter\Name Formatter\obj\Debug\Name Formatter.pdb diff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.GenerateResource.cache b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.GenerateResource.cache new file mode 100644 index 0000000..ce60986 --- /dev/null +++ b/name_formatter/Name Formatter/obj/Debug/Name Formatter.csproj.GenerateResource.cache Binary files differdiff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.exe b/name_formatter/Name Formatter/obj/Debug/Name Formatter.exe new file mode 100644 index 0000000..6f3c073 --- /dev/null +++ b/name_formatter/Name Formatter/obj/Debug/Name Formatter.exe Binary files differdiff --git a/name_formatter/Name Formatter/obj/Debug/Name Formatter.pdb b/name_formatter/Name Formatter/obj/Debug/Name Formatter.pdb new file mode 100644 index 0000000..add9cce --- /dev/null +++ b/name_formatter/Name Formatter/obj/Debug/Name Formatter.pdb Binary files differdiff --git a/name_formatter/Name Formatter/obj/Debug/Name_Formatter.Properties.Resources.resources b/name_formatter/Name Formatter/obj/Debug/Name_Formatter.Properties.Resources.resources new file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/name_formatter/Name Formatter/obj/Debug/Name_Formatter.Properties.Resources.resources Binary files differdiff --git a/name_formatter/Name Formatter/obj/Debug/Name_Formatter.nameFormatter.resources b/name_formatter/Name Formatter/obj/Debug/Name_Formatter.nameFormatter.resources new file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/name_formatter/Name Formatter/obj/Debug/Name_Formatter.nameFormatter.resources Binary files differ |