⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.cs

📁 good C#,code to learn.
💻 CS
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using ProductInfo.localhost;

namespace ProductInfo
{
	/// <summary>
	/// Summary description for Form1.
	/// </summary>
	public class Form1 : System.Windows.Forms.Form
	{
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.TextBox productName;
		private System.Windows.Forms.TextBox productID;
		private System.Windows.Forms.TextBox supplierID;
		private System.Windows.Forms.TextBox categoryID;
		private System.Windows.Forms.TextBox quantityPerUnit;
		private System.Windows.Forms.TextBox unitPrice;
		private System.Windows.Forms.TextBox unitsInStock;
		private System.Windows.Forms.TextBox unitsOnOrder;
		private System.Windows.Forms.TextBox reorderLevel;
		private System.Windows.Forms.CheckBox discontinued;
		private System.Windows.Forms.Button getButton;
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.Container components = null;

		public Form1()
		{
			//
			// Required for Windows Form Designer support
			//
			InitializeComponent();

			//
			// TODO: Add any constructor code after InitializeComponent call
			//
		}

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if (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.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.label7 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.label9 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.productName = new System.Windows.Forms.TextBox();
			this.productID = new System.Windows.Forms.TextBox();
			this.supplierID = new System.Windows.Forms.TextBox();
			this.categoryID = new System.Windows.Forms.TextBox();
			this.quantityPerUnit = new System.Windows.Forms.TextBox();
			this.unitPrice = new System.Windows.Forms.TextBox();
			this.unitsInStock = new System.Windows.Forms.TextBox();
			this.unitsOnOrder = new System.Windows.Forms.TextBox();
			this.reorderLevel = new System.Windows.Forms.TextBox();
			this.discontinued = new System.Windows.Forms.CheckBox();
			this.getButton = new System.Windows.Forms.Button();
			this.SuspendLayout();
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(16, 24);
			this.label1.Name = "label1";
			this.label1.TabIndex = 0;
			this.label1.Text = "Product Name";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(16, 57);
			this.label2.Name = "label2";
			this.label2.TabIndex = 1;
			this.label2.Text = "Product ID";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(16, 90);
			this.label3.Name = "label3";
			this.label3.TabIndex = 2;
			this.label3.Text = "Supplier ID";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(16, 123);
			this.label4.Name = "label4";
			this.label4.TabIndex = 3;
			this.label4.Text = "Category ID";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(16, 156);
			this.label5.Name = "label5";
			this.label5.TabIndex = 4;
			this.label5.Text = "Quantity Per Unit";
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(16, 189);
			this.label6.Name = "label6";
			this.label6.TabIndex = 5;
			this.label6.Text = "Unit Price";
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(16, 222);
			this.label7.Name = "label7";
			this.label7.TabIndex = 6;
			this.label7.Text = "Units In Stock";
			// 
			// label8
			// 
			this.label8.Location = new System.Drawing.Point(16, 255);
			this.label8.Name = "label8";
			this.label8.TabIndex = 7;
			this.label8.Text = "Units On Order";
			// 
			// label9
			// 
			this.label9.Location = new System.Drawing.Point(16, 288);
			this.label9.Name = "label9";
			this.label9.TabIndex = 8;
			this.label9.Text = "Reorder Level";
			// 
			// label10
			// 
			this.label10.Location = new System.Drawing.Point(16, 321);
			this.label10.Name = "label10";
			this.label10.TabIndex = 9;
			this.label10.Text = "Discontinued";
			// 
			// productName
			// 
			this.productName.Location = new System.Drawing.Point(136, 24);
			this.productName.Name = "productName";
			this.productName.TabIndex = 10;
			this.productName.Tag = "";
			this.productName.Text = "";
			// 
			// productID
			// 
			this.productID.Location = new System.Drawing.Point(136, 57);
			this.productID.Name = "productID";
			this.productID.TabIndex = 11;
			this.productID.Tag = "";
			this.productID.Text = "";
			// 
			// supplierID
			// 
			this.supplierID.Location = new System.Drawing.Point(136, 90);
			this.supplierID.Name = "supplierID";
			this.supplierID.TabIndex = 12;
			this.supplierID.Tag = "";
			this.supplierID.Text = "";
			// 
			// categoryID
			// 
			this.categoryID.Location = new System.Drawing.Point(136, 123);
			this.categoryID.Name = "categoryID";
			this.categoryID.TabIndex = 13;
			this.categoryID.Tag = "";
			this.categoryID.Text = "";
			// 
			// quantityPerUnit
			// 
			this.quantityPerUnit.Location = new System.Drawing.Point(136, 156);
			this.quantityPerUnit.Name = "quantityPerUnit";
			this.quantityPerUnit.TabIndex = 14;
			this.quantityPerUnit.Tag = "";
			this.quantityPerUnit.Text = "";
			// 
			// unitPrice
			// 
			this.unitPrice.Location = new System.Drawing.Point(136, 189);
			this.unitPrice.Name = "unitPrice";
			this.unitPrice.TabIndex = 15;
			this.unitPrice.Tag = "";
			this.unitPrice.Text = "";
			// 
			// unitsInStock
			// 
			this.unitsInStock.Location = new System.Drawing.Point(136, 222);
			this.unitsInStock.Name = "unitsInStock";
			this.unitsInStock.TabIndex = 16;
			this.unitsInStock.Tag = "";
			this.unitsInStock.Text = "";
			// 
			// unitsOnOrder
			// 
			this.unitsOnOrder.Location = new System.Drawing.Point(136, 255);
			this.unitsOnOrder.Name = "unitsOnOrder";
			this.unitsOnOrder.TabIndex = 17;
			this.unitsOnOrder.Tag = "";
			this.unitsOnOrder.Text = "";
			// 
			// reorderLevel
			// 
			this.reorderLevel.Location = new System.Drawing.Point(136, 288);
			this.reorderLevel.Name = "reorderLevel";
			this.reorderLevel.TabIndex = 18;
			this.reorderLevel.Tag = "";
			this.reorderLevel.Text = "";
			// 
			// discontinued
			// 
			this.discontinued.Location = new System.Drawing.Point(136, 320);
			this.discontinued.Name = "discontinued";
			this.discontinued.TabIndex = 19;
			// 
			// getButton
			// 
			this.getButton.Location = new System.Drawing.Point(264, 24);
			this.getButton.Name = "getButton";
			this.getButton.TabIndex = 20;
			this.getButton.Text = "Get";
			this.getButton.Click += new System.EventHandler(this.getButtonClick);
			// 
			// Form1
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(384, 366);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.getButton,
																		  this.discontinued,
																		  this.reorderLevel,
																		  this.unitsOnOrder,
																		  this.unitsInStock,
																		  this.unitPrice,
																		  this.quantityPerUnit,
																		  this.categoryID,
																		  this.supplierID,
																		  this.productID,
																		  this.productName,
																		  this.label10,
																		  this.label9,
																		  this.label8,
																		  this.label7,
																		  this.label6,
																		  this.label5,
																		  this.label4,
																		  this.label3,
																		  this.label2,
																		  this.label1});
			this.Name = "Form1";
			this.Text = "Product Details";
			this.ResumeLayout(false);

		}
		#endregion

		/// <summary>
		/// The main entry point for the application.
		/// </summary>
		[STAThread]
		static void Main() 
		{
			Application.Run(new Form1());
		}

		private void getButtonClick(object sender, System.EventArgs e)
		{
			ProductService productService = new ProductService();
			try
			{
				Product prod = productService.GetProductInfo(productName.Text);
				productID.Text = prod.ProductID.ToString();
				supplierID.Text = prod.SupplierID.ToString();
				categoryID.Text = prod.CategoryID.ToString();
				quantityPerUnit.Text = prod.QuantityPerUnit.ToString();
				unitPrice.Text = prod.UnitPrice.ToString();
				unitsInStock.Text = prod.UnitsInStock.ToString();
				unitsOnOrder.Text = prod.UnitPrice.ToString();
				reorderLevel.Text = prod.ReorderLevel.ToString();
				discontinued.Checked = prod.Discontinued;
			}
			catch (Exception ex)
			{
				MessageBox.Show("Error fetching product details: " + ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
			}
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -