computer science -- CHECK BOTH ASSIGNMENT AND SOLUTION
RadioGUI/RadioGUI.sln
Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2013 VisualStudioVersion = 12.0.40629.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RadioGUI", "RadioGUI\RadioGUI.csproj", "{8E182900-F135-4C0C-9FE8-003076F3ECC3}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {8E182900-F135-4C0C-9FE8-003076F3ECC3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {8E182900-F135-4C0C-9FE8-003076F3ECC3}.Debug|Any CPU.Build.0 = Debug|Any CPU {8E182900-F135-4C0C-9FE8-003076F3ECC3}.Release|Any CPU.ActiveCfg = Release|Any CPU {8E182900-F135-4C0C-9FE8-003076F3ECC3}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection EndGlobal
RadioGUI/RadioGUI.v12.suo
RadioGUI/RadioGUI/App.config
RadioGUI/RadioGUI/bin/Debug/RadioGUI.exe
RadioGUI/RadioGUI/bin/Debug/RadioGUI.exe.config
RadioGUI/RadioGUI/bin/Debug/RadioGUI.pdb
RadioGUI/RadioGUI/bin/Debug/RadioGUI.vshost.exe
RadioGUI/RadioGUI/bin/Debug/RadioGUI.vshost.exe.config
RadioGUI/RadioGUI/bin/Debug/RadioGUI.vshost.exe.manifest
RadioGUI/RadioGUI/Form1.cs
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 RadioGUI { public partial class Form1 : Form { public Form1() { InitializeComponent(); } } }
RadioGUI/RadioGUI/Form1.Designer.cs
namespace RadioGUI { 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.groupBox1 = new System.Windows.Forms.GroupBox(); this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.button3 = new System.Windows.Forms.Button(); this.button4 = new System.Windows.Forms.Button(); this.button5 = new System.Windows.Forms.Button(); this.button6 = new System.Windows.Forms.Button(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.checkBox1 = new System.Windows.Forms.CheckBox(); this.checkBox2 = new System.Windows.Forms.CheckBox(); this.button7 = new System.Windows.Forms.Button(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.checkBox3 = new System.Windows.Forms.CheckBox(); this.trackBar1 = new System.Windows.Forms.TrackBar(); this.groupBox4 = new System.Windows.Forms.GroupBox(); this.label1 = new System.Windows.Forms.Label(); this.radioButton1 = new System.Windows.Forms.RadioButton(); this.radioButton2 = new System.Windows.Forms.RadioButton(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.groupBox3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit(); this.groupBox4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // groupBox1 // this.groupBox1.Controls.Add(this.button6); this.groupBox1.Controls.Add(this.button5); this.groupBox1.Controls.Add(this.button4); this.groupBox1.Controls.Add(this.button3); this.groupBox1.Controls.Add(this.button2); this.groupBox1.Controls.Add(this.button1); this.groupBox1.Location = new System.Drawing.Point(12, 12); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(180, 55); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Pre-set Stations "; // // button1 // this.button1.Location = new System.Drawing.Point(8, 16); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(23, 23); this.button1.TabIndex = 0; this.button1.Text = "1"; this.button1.UseVisualStyleBackColor = true; // // button2 // this.button2.Location = new System.Drawing.Point(84, 16); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(23, 23); this.button2.TabIndex = 1; this.button2.Text = "4"; this.button2.UseVisualStyleBackColor = true; // // button3 // this.button3.Location = new System.Drawing.Point(108, 16); this.button3.Name = "button3"; this.button3.Size = new System.Drawing.Size(23, 23); this.button3.TabIndex = 2; this.button3.Text = "5"; this.button3.UseVisualStyleBackColor = true; // // button4 // this.button4.Location = new System.Drawing.Point(33, 16); this.button4.Name = "button4"; this.button4.Size = new System.Drawing.Size(23, 23); this.button4.TabIndex = 3; this.button4.Text = "2"; this.button4.UseVisualStyleBackColor = true; // // button5 // this.button5.Location = new System.Drawing.Point(137, 16); this.button5.Name = "button5"; this.button5.Size = new System.Drawing.Size(23, 23); this.button5.TabIndex = 4; this.button5.Text = "6"; this.button5.UseVisualStyleBackColor = true; // // button6 // this.button6.Location = new System.Drawing.Point(59, 16); this.button6.Name = "button6"; this.button6.Size = new System.Drawing.Size(23, 23); this.button6.TabIndex = 5; this.button6.Text = "3"; this.button6.UseVisualStyleBackColor = true; // // groupBox2 // this.groupBox2.Controls.Add(this.checkBox2); this.groupBox2.Controls.Add(this.checkBox1); this.groupBox2.Location = new System.Drawing.Point(204, 13); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(120, 55); this.groupBox2.TabIndex = 1; this.groupBox2.TabStop = false; this.groupBox2.Text = "Speakers"; // // checkBox1 // this.checkBox1.AutoSize = true; this.checkBox1.Location = new System.Drawing.Point(6, 19); this.checkBox1.Name = "checkBox1"; this.checkBox1.Size = new System.Drawing.Size(49, 19); this.checkBox1.TabIndex = 0; this.checkBox1.Text = "Rear"; this.checkBox1.UseVisualStyleBackColor = true; // // checkBox2 // this.checkBox2.AutoSize = true; this.checkBox2.Location = new System.Drawing.Point(61, 19); this.checkBox2.Name = "checkBox2"; this.checkBox2.Size = new System.Drawing.Size(54, 19); this.checkBox2.TabIndex = 1; this.checkBox2.Text = "Front"; this.checkBox2.UseVisualStyleBackColor = true; // // button7 // this.button7.Location = new System.Drawing.Point(330, 14); this.button7.Name = "button7"; this.button7.Size = new System.Drawing.Size(75, 55); this.button7.TabIndex = 2; this.button7.Text = "Power On/Off "; this.button7.UseVisualStyleBackColor = true; // // groupBox3 // this.groupBox3.Controls.Add(this.trackBar1); this.groupBox3.Controls.Add(this.checkBox3); this.groupBox3.Location = new System.Drawing.Point(12, 73); this.groupBox3.Name = "groupBox3"; this.groupBox3.Size = new System.Drawing.Size(180, 70); this.groupBox3.TabIndex = 3; this.groupBox3.TabStop = false; this.groupBox3.Text = "Volume Control "; // // checkBox3 // this.checkBox3.AutoSize = true; this.checkBox3.Location = new System.Drawing.Point(5, 25); this.checkBox3.Name = "checkBox3"; this.checkBox3.Size = new System.Drawing.Size(54, 19); this.checkBox3.TabIndex = 0; this.checkBox3.Text = "Mute"; this.checkBox3.UseVisualStyleBackColor = true; // // trackBar1 // this.trackBar1.Location = new System.Drawing.Point(58, 22); this.trackBar1.Name = "trackBar1"; this.trackBar1.Size = new System.Drawing.Size(116, 45); this.trackBar1.TabIndex = 1; // // groupBox4 // this.groupBox4.Controls.Add(this.radioButton1); this.groupBox4.Controls.Add(this.label1); this.groupBox4.Location = new System.Drawing.Point(210, 75); this.groupBox4.Name = "groupBox4"; this.groupBox4.Size = new System.Drawing.Size(120, 70); this.groupBox4.TabIndex = 4; this.groupBox4.TabStop = false; this.groupBox4.Text = "Tuning"; // // label1 // this.label1.BackColor = System.Drawing.Color.Black; this.label1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.ForeColor = System.Drawing.Color.Silver; this.label1.Location = new System.Drawing.Point(14, 19); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(50, 44); this.label1.TabIndex = 0; this.label1.Text = "92.9"; this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; // // radioButton1 // this.radioButton1.AutoSize = true; this.radioButton1.Location = new System.Drawing.Point(70, 20); this.radioButton1.Name = "radioButton1"; this.radioButton1.Size = new System.Drawing.Size(44, 19); this.radioButton1.TabIndex = 1; this.radioButton1.TabStop = true; this.radioButton1.Text = "AM"; this.radioButton1.UseVisualStyleBackColor = true; // // radioButton2 // this.radioButton2.AutoSize = true; this.radioButton2.Location = new System.Drawing.Point(280, 119); this.radioButton2.Name = "radioButton2"; this.radioButton2.Size = new System.Drawing.Size(42, 19); this.radioButton2.TabIndex = 2; this.radioButton2.TabStop = true; this.radioButton2.Text = "FM"; this.radioButton2.UseVisualStyleBackColor = true; // // pictureBox1 // this.pictureBox1.Image = global::RadioGUI.Properties.Resources.index; this.pictureBox1.Location = new System.Drawing.Point(338, 81); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(55, 70); this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox1.TabIndex = 5; this.pictureBox1.TabStop = false; // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(411, 155); this.Controls.Add(this.pictureBox1); this.Controls.Add(this.radioButton2); this.Controls.Add(this.groupBox4); this.Controls.Add(this.groupBox3); this.Controls.Add(this.button7); this.Controls.Add(this.groupBox2); this.Controls.Add(this.groupBox1); this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Name = "Form1"; this.Text = "Radio"; this.groupBox1.ResumeLayout(false); this.groupBox2.ResumeLayout(false); this.groupBox2.PerformLayout(); this.groupBox3.ResumeLayout(false); this.groupBox3.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit(); this.groupBox4.ResumeLayout(false); this.groupBox4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Button button6; private System.Windows.Forms.Button button5; private System.Windows.Forms.Button button4; private System.Windows.Forms.Button button3; private System.Windows.Forms.Button button2; private System.Windows.Forms.Button button1; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.CheckBox checkBox2; private System.Windows.Forms.CheckBox checkBox1; private System.Windows.Forms.Button button7; private System.Windows.Forms.GroupBox groupBox3; private System.Windows.Forms.TrackBar trackBar1; private System.Windows.Forms.CheckBox checkBox3; private System.Windows.Forms.GroupBox groupBox4; private System.Windows.Forms.RadioButton radioButton1; private System.Windows.Forms.Label label1; private System.Windows.Forms.RadioButton radioButton2; private System.Windows.Forms.PictureBox pictureBox1; } }
RadioGUI/RadioGUI/Form1.resx
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
RadioGUI/RadioGUI/obj/Debug/DesignTimeResolveAssemblyReferences.cache
RadioGUI/RadioGUI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
RadioGUI/RadioGUI/obj/Debug/RadioGUI.csproj.FileListAbsolute.txt
c:\users\user\documents\visual studio 2013\Projects\RadioGUI\RadioGUI\bin\Debug\RadioGUI.exe.config c:\users\user\documents\visual studio 2013\Projects\RadioGUI\RadioGUI\bin\Debug\RadioGUI.exe c:\users\user\documents\visual studio 2013\Projects\RadioGUI\RadioGUI\bin\Debug\RadioGUI.pdb c:\users\user\documents\visual studio 2013\Projects\RadioGUI\RadioGUI\obj\Debug\RadioGUI.csprojResolveAssemblyReference.cache c:\users\user\documents\visual studio 2013\Projects\RadioGUI\RadioGUI\obj\Debug\RadioGUI.Form1.resources c:\users\user\documents\visual studio 2013\Projects\RadioGUI\RadioGUI\obj\Debug\RadioGUI.Properties.Resources.resources c:\users\user\documents\visual studio 2013\Projects\RadioGUI\RadioGUI\obj\Debug\RadioGUI.csproj.GenerateResource.Cache c:\users\user\documents\visual studio 2013\Projects\RadioGUI\RadioGUI\obj\Debug\RadioGUI.exe c:\users\user\documents\visual studio 2013\Projects\RadioGUI\RadioGUI\obj\Debug\RadioGUI.pdb
RadioGUI/RadioGUI/obj/Debug/RadioGUI.csproj.GenerateResource.Cache
RadioGUI/RadioGUI/obj/Debug/RadioGUI.csprojResolveAssemblyReference.cache
RadioGUI/RadioGUI/obj/Debug/RadioGUI.exe
RadioGUI/RadioGUI/obj/Debug/RadioGUI.Form1.resources
RadioGUI/RadioGUI/obj/Debug/RadioGUI.pdb
RadioGUI/RadioGUI/obj/Debug/RadioGUI.Properties.Resources.resources
RadioGUI/RadioGUI/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
RadioGUI/RadioGUI/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
RadioGUI/RadioGUI/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
RadioGUI/RadioGUI/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll
RadioGUI/RadioGUI/Program.cs
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace RadioGUI { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } }
RadioGUI/RadioGUI/Properties/AssemblyInfo.cs
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("RadioGUI")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("RadioGUI")] [assembly: AssemblyCopyright("Copyright © 2016")] [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("b4c4f216-1624-404f-8a4a-8fde2695127f")] // 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")]
RadioGUI/RadioGUI/Properties/Resources.Designer.cs
//------------------------------------------------------------------------------ // <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 RadioGUI.Properties { using System; /// <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 (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("RadioGUI.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; } } /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> internal static System.Drawing.Bitmap index { get { object obj = ResourceManager.GetObject("index", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } } }
RadioGUI/RadioGUI/Properties/Resources.resx
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 ..\Resources\index.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
RadioGUI/RadioGUI/Properties/Settings.Designer.cs
//------------------------------------------------------------------------------ // <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 RadioGUI.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.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; } } } }
RadioGUI/RadioGUI/Properties/Settings.settings
RadioGUI/RadioGUI/RadioGUI.csproj
Debug AnyCPU {8E182900-F135-4C0C-9FE8-003076F3ECC3} WinExe Properties RadioGUI RadioGUI v4.0 512 AnyCPU true full false bin\Debug\ DEBUG;TRACE prompt 4 AnyCPU pdbonly true bin\Release\ TRACE prompt 4 Form Form1.cs Form1.cs ResXFileCodeGenerator Resources.Designer.cs Designer True Resources.resx True SettingsSingleFileGenerator Settings.Designer.cs True Settings.settings True