This commit is contained in:
2022-09-13 15:08:17 -05:00
parent 50e7440f8c
commit 0982139f64
330 changed files with 2191 additions and 96 deletions

Binary file not shown.

Binary file not shown.

140
Lab4_2/Lab4_4_CalebFontenot/Form1.Designer.cs generated Executable file
View File

@@ -0,0 +1,140 @@
namespace Lab3_2_CalebFontenot
{
partial class Form1
{
/// <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.milesPromptLabel = new System.Windows.Forms.Label();
this.gallonsPromptLabel = new System.Windows.Forms.Label();
this.outputDescriptionLabel = new System.Windows.Forms.Label();
this.milesTextBox = new System.Windows.Forms.TextBox();
this.gallonsTextBox = new System.Windows.Forms.TextBox();
this.mpgLabel = new System.Windows.Forms.TextBox();
this.calculateButton = new System.Windows.Forms.Button();
this.exitButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// milesPromptLabel
//
this.milesPromptLabel.AutoSize = true;
this.milesPromptLabel.Location = new System.Drawing.Point(12, 30);
this.milesPromptLabel.Name = "milesPromptLabel";
this.milesPromptLabel.Size = new System.Drawing.Size(183, 15);
this.milesPromptLabel.TabIndex = 0;
this.milesPromptLabel.Text = "Enter the number of miles driven:";
//
// gallonsPromptLabel
//
this.gallonsPromptLabel.AutoSize = true;
this.gallonsPromptLabel.Location = new System.Drawing.Point(27, 71);
this.gallonsPromptLabel.Name = "gallonsPromptLabel";
this.gallonsPromptLabel.Size = new System.Drawing.Size(168, 15);
this.gallonsPromptLabel.TabIndex = 1;
this.gallonsPromptLabel.Text = "Enther the gallons of gas used:";
//
// outputDescriptionLabel
//
this.outputDescriptionLabel.AutoSize = true;
this.outputDescriptionLabel.Location = new System.Drawing.Point(105, 105);
this.outputDescriptionLabel.Name = "outputDescriptionLabel";
this.outputDescriptionLabel.Size = new System.Drawing.Size(90, 15);
this.outputDescriptionLabel.TabIndex = 2;
this.outputDescriptionLabel.Text = "Your car\'s MPG:";
//
// milesTextBox
//
this.milesTextBox.Location = new System.Drawing.Point(212, 27);
this.milesTextBox.Name = "milesTextBox";
this.milesTextBox.Size = new System.Drawing.Size(102, 23);
this.milesTextBox.TabIndex = 3;
//
// gallonsTextBox
//
this.gallonsTextBox.Location = new System.Drawing.Point(214, 63);
this.gallonsTextBox.Name = "gallonsTextBox";
this.gallonsTextBox.Size = new System.Drawing.Size(100, 23);
this.gallonsTextBox.TabIndex = 4;
//
// mpgLabel
//
this.mpgLabel.Location = new System.Drawing.Point(214, 102);
this.mpgLabel.Name = "mpgLabel";
this.mpgLabel.Size = new System.Drawing.Size(100, 23);
this.mpgLabel.TabIndex = 5;
//
// calculateButton
//
this.calculateButton.Location = new System.Drawing.Point(68, 132);
this.calculateButton.Name = "calculateButton";
this.calculateButton.Size = new System.Drawing.Size(75, 44);
this.calculateButton.TabIndex = 6;
this.calculateButton.Text = "Calculate MPG";
this.calculateButton.UseVisualStyleBackColor = true;
this.calculateButton.Click += new System.EventHandler(this.calculateButton_Click);
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(149, 132);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 44);
this.exitButton.TabIndex = 7;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(326, 188);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.calculateButton);
this.Controls.Add(this.mpgLabel);
this.Controls.Add(this.gallonsTextBox);
this.Controls.Add(this.milesTextBox);
this.Controls.Add(this.outputDescriptionLabel);
this.Controls.Add(this.gallonsPromptLabel);
this.Controls.Add(this.milesPromptLabel);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private Label milesPromptLabel;
private Label gallonsPromptLabel;
private Label outputDescriptionLabel;
private TextBox milesTextBox;
private TextBox gallonsTextBox;
private TextBox mpgLabel;
private Button calculateButton;
private Button exitButton;
}
}

View File

@@ -0,0 +1,47 @@
namespace Lab3_2_CalebFontenot
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void calculateButton_Click(object sender, EventArgs e)
{
double miles;
double gallons;
double mpg;
// Validate the milesTextBox control.
if (double.TryParse(milesTextBox.Text, out miles))
{
if (double.TryParse(gallonsTextBox.Text, out gallons))
{
// Calculate MPG.
mpg = miles / gallons;
// Display the MPG in the mpgLabel control.
mpgLabel.Text = mpg.ToString("n1");
}
else
{
// Display an error message for gallonsTextBox.
MessageBox.Show("Invalid input for gallons.");
}
}
else
{
// Display an error message for milesTextBox.
MessageBox.Show("Invalid input for miles.");
}
}
private void exitButton_Click(object sender, EventArgs e)
{
// Close the form.
this.Close();
}
}
}

View File

@@ -0,0 +1,60 @@
<root>
<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>

View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Update="Form1.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>

View File

@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32804.467
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lab4_4_CalebFontenot", "Lab4_4_CalebFontenot.csproj", "{C123B909-C2AB-4E4C-8309-54EAEF1D2B92}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C123B909-C2AB-4E4C-8309-54EAEF1D2B92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C123B909-C2AB-4E4C-8309-54EAEF1D2B92}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C123B909-C2AB-4E4C-8309-54EAEF1D2B92}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C123B909-C2AB-4E4C-8309-54EAEF1D2B92}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {CAD245AC-3831-4304-B9B6-D0B437529720}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,17 @@
namespace Lab3_2_CalebFontenot
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}

View File

@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Lab3_2_CalebFontenot/1.0.0": {
"runtime": {
"Lab3_2_CalebFontenot.dll": {}
}
}
}
},
"libraries": {
"Lab3_2_CalebFontenot/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@@ -0,0 +1,15 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
]
}
}

View File

@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Lab4_4_CalebFontenot/1.0.0": {
"runtime": {
"Lab4_4_CalebFontenot.dll": {}
}
}
}
},
"libraries": {
"Lab4_4_CalebFontenot/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@@ -0,0 +1,15 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
]
}
}

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <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>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Lab3_2_CalebFontenot")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Lab3_2_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("Lab3_2_CalebFontenot")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
d32ab842b84b32f85db16b432d3fb849d121106c

View File

@@ -0,0 +1,16 @@
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Lab3_2_CalebFontenot
build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\

View File

@@ -0,0 +1,10 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Drawing;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
global using global::System.Windows.Forms;

View File

@@ -0,0 +1 @@
5e0641285063704d0135ac3d3966dab8ef0aff94

View File

@@ -0,0 +1,17 @@
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\bin\Debug\net6.0-windows\Lab3_2_CalebFontenot.exe
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\bin\Debug\net6.0-windows\Lab3_2_CalebFontenot.deps.json
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\bin\Debug\net6.0-windows\Lab3_2_CalebFontenot.runtimeconfig.json
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\bin\Debug\net6.0-windows\Lab3_2_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\bin\Debug\net6.0-windows\Lab3_2_CalebFontenot.pdb
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\Lab3_2_CalebFontenot.csproj.AssemblyReference.cache
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\Lab3_2_CalebFontenot.Form1.resources
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\Lab3_2_CalebFontenot.csproj.GenerateResource.cache
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\Lab3_2_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\Lab3_2_CalebFontenot.AssemblyInfoInputs.cache
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\Lab3_2_CalebFontenot.AssemblyInfo.cs
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\Lab3_2_CalebFontenot.csproj.CoreCompileInputs.cache
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\Lab3_2_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\refint\Lab3_2_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\Lab3_2_CalebFontenot.pdb
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\Lab3_2_CalebFontenot.genruntimeconfig.cache
Z:\media\DataEXT4\Documents\ASDV C#\Lab3_2_CalebFontenot\Lab3_2_CalebFontenot\obj\Debug\net6.0-windows\ref\Lab3_2_CalebFontenot.dll

View File

@@ -0,0 +1,11 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {}
},
"libraries": {}
}

View File

@@ -0,0 +1,22 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\caleb\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\caleb\\.nuget\\packages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@@ -0,0 +1 @@
3e0324ac12db30fdc1d7e0a885ccaee7504cf40c

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <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>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Lab4_4_CalebFontenot")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Lab4_4_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("Lab4_4_CalebFontenot")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
ccf09197bc4a03a6acd0700feac099bfa1491b88

View File

@@ -0,0 +1,16 @@
is_global = true
build_property.ApplicationManifest =
build_property.StartupObject =
build_property.ApplicationDefaultFont =
build_property.ApplicationHighDpiMode =
build_property.ApplicationUseCompatibleTextRendering =
build_property.ApplicationVisualStyles =
build_property.TargetFramework = net6.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Lab4_4_CalebFontenot
build_property.ProjectDir = Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\

View File

@@ -0,0 +1,10 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Drawing;
global using global::System.IO;
global using global::System.Linq;
global using global::System.Net.Http;
global using global::System.Threading;
global using global::System.Threading.Tasks;
global using global::System.Windows.Forms;

View File

@@ -0,0 +1 @@
00b53fc1fdadb98065f42b342221764fe3292884

View File

@@ -0,0 +1,17 @@
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\Lab4_4_CalebFontenot.csproj.AssemblyReference.cache
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\Lab3_2_CalebFontenot.Form1.resources
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\Lab4_4_CalebFontenot.csproj.GenerateResource.cache
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\Lab4_4_CalebFontenot.GeneratedMSBuildEditorConfig.editorconfig
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\Lab4_4_CalebFontenot.AssemblyInfoInputs.cache
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\Lab4_4_CalebFontenot.AssemblyInfo.cs
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\Lab4_4_CalebFontenot.csproj.CoreCompileInputs.cache
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\bin\Debug\net6.0-windows\Lab4_4_CalebFontenot.exe
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\bin\Debug\net6.0-windows\Lab4_4_CalebFontenot.deps.json
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\bin\Debug\net6.0-windows\Lab4_4_CalebFontenot.runtimeconfig.json
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\bin\Debug\net6.0-windows\Lab4_4_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\bin\Debug\net6.0-windows\Lab4_4_CalebFontenot.pdb
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\Lab4_4_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\refint\Lab4_4_CalebFontenot.dll
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\Lab4_4_CalebFontenot.pdb
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\Lab4_4_CalebFontenot.genruntimeconfig.cache
Z:\media\DataEXT4\Documents\ASDV C#\Lab4_2\Lab4_4_CalebFontenot\obj\Debug\net6.0-windows\ref\Lab4_4_CalebFontenot.dll

View File

@@ -0,0 +1,11 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {}
},
"libraries": {}
}

View File

@@ -0,0 +1,22 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\caleb\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\caleb\\.nuget\\packages"
],
"configProperties": {
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@@ -0,0 +1 @@
513bc569a81762d3615b39e399285b8a5459c683

View File

@@ -0,0 +1,66 @@
{
"format": 1,
"restore": {
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\Lab3_2_CalebFontenot.csproj": {}
},
"projects": {
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\Lab3_2_CalebFontenot.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\Lab3_2_CalebFontenot.csproj",
"projectName": "Lab3_2_CalebFontenot",
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\Lab3_2_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\caleb\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\caleb\.nuget\packages\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,66 @@
{
"format": 1,
"restore": {
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\Lab4_4_CalebFontenot.csproj": {}
},
"projects": {
"Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\Lab4_4_CalebFontenot.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\Lab4_4_CalebFontenot.csproj",
"projectName": "Lab4_4_CalebFontenot",
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\Lab4_4_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\caleb\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\caleb\.nuget\packages\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,71 @@
{
"version": 3,
"targets": {
"net6.0-windows7.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net6.0-windows7.0": []
},
"packageFolders": {
"C:\\Users\\caleb\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\Lab4_4_CalebFontenot.csproj",
"projectName": "Lab4_4_CalebFontenot",
"projectPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\Lab4_4_CalebFontenot.csproj",
"packagesPath": "C:\\Users\\caleb\\.nuget\\packages\\",
"outputPath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\caleb\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net6.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0-windows7.0": {
"targetAlias": "net6.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "7nKr2tbBxg3b9VyN2+6biAfiiZjTB7mvBePL23oYSC+6rB2HFMv2Uv3/yW4APXEiNYMDm8mRbrj91z8rtXHKNQ==",
"success": true,
"projectFilePath": "Z:\\media\\DataEXT4\\Documents\\ASDV C#\\Lab4_2\\Lab4_4_CalebFontenot\\Lab4_4_CalebFontenot.csproj",
"expectedPackageFiles": [],
"logs": []
}

Binary file not shown.

Binary file not shown.

147
Lab4_2/Lab4_5_CalebFontenot/Form1.Designer.cs generated Executable file
View File

@@ -0,0 +1,147 @@
namespace Lab4_5_CalebFontenot
{
partial class Form1
{
/// <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.colorGroupBox = new System.Windows.Forms.GroupBox();
this.normalRadioButton = new System.Windows.Forms.RadioButton();
this.blackRadioButton = new System.Windows.Forms.RadioButton();
this.whiteRadioButton = new System.Windows.Forms.RadioButton();
this.redRadioButton = new System.Windows.Forms.RadioButton();
this.yellowRadioButton = new System.Windows.Forms.RadioButton();
this.exitButton = new System.Windows.Forms.Button();
this.colorGroupBox.SuspendLayout();
this.SuspendLayout();
//
// colorGroupBox
//
this.colorGroupBox.Controls.Add(this.normalRadioButton);
this.colorGroupBox.Controls.Add(this.blackRadioButton);
this.colorGroupBox.Controls.Add(this.whiteRadioButton);
this.colorGroupBox.Controls.Add(this.redRadioButton);
this.colorGroupBox.Controls.Add(this.yellowRadioButton);
this.colorGroupBox.Location = new System.Drawing.Point(12, 12);
this.colorGroupBox.Name = "colorGroupBox";
this.colorGroupBox.Size = new System.Drawing.Size(161, 153);
this.colorGroupBox.TabIndex = 0;
this.colorGroupBox.TabStop = false;
this.colorGroupBox.Text = "Select a background color";
//
// normalRadioButton
//
this.normalRadioButton.AutoSize = true;
this.normalRadioButton.Checked = true;
this.normalRadioButton.Location = new System.Drawing.Point(36, 122);
this.normalRadioButton.Name = "normalRadioButton";
this.normalRadioButton.Size = new System.Drawing.Size(107, 19);
this.normalRadioButton.TabIndex = 4;
this.normalRadioButton.TabStop = true;
this.normalRadioButton.Text = "Back to Normal";
this.normalRadioButton.UseVisualStyleBackColor = true;
this.normalRadioButton.CheckedChanged += new System.EventHandler(this.normalRadioButton_CheckedChanged);
//
// blackRadioButton
//
this.blackRadioButton.AutoSize = true;
this.blackRadioButton.Location = new System.Drawing.Point(36, 97);
this.blackRadioButton.Name = "blackRadioButton";
this.blackRadioButton.Size = new System.Drawing.Size(53, 19);
this.blackRadioButton.TabIndex = 3;
this.blackRadioButton.Text = "Black";
this.blackRadioButton.UseVisualStyleBackColor = true;
this.blackRadioButton.CheckedChanged += new System.EventHandler(this.blackRadioButton_CheckedChanged);
//
// whiteRadioButton
//
this.whiteRadioButton.AutoSize = true;
this.whiteRadioButton.Location = new System.Drawing.Point(36, 72);
this.whiteRadioButton.Name = "whiteRadioButton";
this.whiteRadioButton.Size = new System.Drawing.Size(56, 19);
this.whiteRadioButton.TabIndex = 2;
this.whiteRadioButton.Text = "White";
this.whiteRadioButton.UseVisualStyleBackColor = true;
this.whiteRadioButton.CheckedChanged += new System.EventHandler(this.whiteRadioButton_CheckedChanged);
//
// redRadioButton
//
this.redRadioButton.AutoSize = true;
this.redRadioButton.Location = new System.Drawing.Point(36, 47);
this.redRadioButton.Name = "redRadioButton";
this.redRadioButton.Size = new System.Drawing.Size(45, 19);
this.redRadioButton.TabIndex = 1;
this.redRadioButton.Text = "Red";
this.redRadioButton.UseVisualStyleBackColor = true;
this.redRadioButton.CheckedChanged += new System.EventHandler(this.redRadioButton_CheckedChanged);
//
// yellowRadioButton
//
this.yellowRadioButton.AutoSize = true;
this.yellowRadioButton.Location = new System.Drawing.Point(36, 22);
this.yellowRadioButton.Name = "yellowRadioButton";
this.yellowRadioButton.Size = new System.Drawing.Size(59, 19);
this.yellowRadioButton.TabIndex = 0;
this.yellowRadioButton.Text = "Yellow";
this.yellowRadioButton.UseVisualStyleBackColor = true;
this.yellowRadioButton.CheckedChanged += new System.EventHandler(this.yellowRadioButton_CheckedChanged);
//
// exitButton
//
this.exitButton.Location = new System.Drawing.Point(48, 171);
this.exitButton.Name = "exitButton";
this.exitButton.Size = new System.Drawing.Size(75, 23);
this.exitButton.TabIndex = 1;
this.exitButton.Text = "Exit";
this.exitButton.UseVisualStyleBackColor = true;
this.exitButton.Click += new System.EventHandler(this.exitButton_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(187, 205);
this.Controls.Add(this.exitButton);
this.Controls.Add(this.colorGroupBox);
this.Name = "Form1";
this.Text = "Color Theme";
this.colorGroupBox.ResumeLayout(false);
this.colorGroupBox.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private GroupBox colorGroupBox;
private RadioButton normalRadioButton;
private RadioButton blackRadioButton;
private RadioButton whiteRadioButton;
private RadioButton redRadioButton;
private RadioButton yellowRadioButton;
private Button exitButton;
}
}

View File

@@ -0,0 +1,56 @@
namespace Lab4_5_CalebFontenot
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void yellowRadioButton_CheckedChanged(object sender, EventArgs e)
{
if (yellowRadioButton.Checked)
{
this.BackColor = Color.Yellow;
}
}
private void redRadioButton_CheckedChanged(object sender, EventArgs e)
{
if (redRadioButton.Checked)
{
this.BackColor = Color.Red;
}
}
private void whiteRadioButton_CheckedChanged(object sender, EventArgs e)
{
if (whiteRadioButton.Checked)
{
this.BackColor = Color.White;
}
}
private void blackRadioButton_CheckedChanged(object sender, EventArgs e)
{
if (blackRadioButton.Checked)
{
this.BackColor = Color.Gray; //Shh I know it's not black
}
}
private void normalRadioButton_CheckedChanged(object sender, EventArgs e)
{
if (normalRadioButton.Checked)
{
this.BackColor = SystemColors.Control;
}
}
private void exitButton_Click(object sender, EventArgs e)
{
// Close the form.
this.Close();
}
}
}

View File

@@ -0,0 +1,60 @@
<root>
<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>

View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Compile Update="Form1.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>

View File

@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32804.467
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lab4_5_CalebFontenot", "Lab4_5_CalebFontenot.csproj", "{DD8C05CB-2023-450B-93FE-89271C979BC6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{DD8C05CB-2023-450B-93FE-89271C979BC6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DD8C05CB-2023-450B-93FE-89271C979BC6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DD8C05CB-2023-450B-93FE-89271C979BC6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DD8C05CB-2023-450B-93FE-89271C979BC6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C61F2071-FB4B-4C01-AA3A-5A95A2A9060F}
EndGlobalSection
EndGlobal

View File

@@ -0,0 +1,17 @@
namespace Lab4_5_CalebFontenot
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}

View File

@@ -0,0 +1,23 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v6.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v6.0": {
"Lab4_5_CalebFontenot/1.0.0": {
"runtime": {
"Lab4_5_CalebFontenot.dll": {}
}
}
}
},
"libraries": {
"Lab4_5_CalebFontenot/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@@ -0,0 +1,15 @@
{
"runtimeOptions": {
"tfm": "net6.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "6.0.0"
}
]
}
}

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

View File

@@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <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>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Lab4_5_CalebFontenot")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("Lab4_5_CalebFontenot")]
[assembly: System.Reflection.AssemblyTitleAttribute("Lab4_5_CalebFontenot")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
2ca6f85da2ba06899261f0ab0b53db15b4f482fa

Some files were not shown because too many files have changed in this diff Show More