SampleClient.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:3k
源码类别:

C#编程

开发平台:

Others

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. namespace SampleClientApp
  7. {
  8. /// <summary>
  9. /// Summary description for Form1.
  10. /// </summary>
  11. public class SampleClient : System.Windows.Forms.Form
  12. {
  13.     private System.Windows.Forms.Button btnOtherForm;
  14.     private System.Windows.Forms.Label lblOutput;
  15. /// <summary>
  16. /// Required designer variable.
  17. /// </summary>
  18. private System.ComponentModel.Container components = null;
  19. public SampleClient()
  20. {
  21. //
  22. // Required for Windows Form Designer support
  23. //
  24. InitializeComponent();
  25. //
  26. // TODO: Add any constructor code after InitializeComponent call
  27. //
  28. }
  29. /// <summary>
  30. /// Clean up any resources being used.
  31. /// </summary>
  32. protected override void Dispose( bool disposing )
  33. {
  34. if( disposing )
  35. {
  36. if (components != null) 
  37. {
  38. components.Dispose();
  39. }
  40. }
  41. base.Dispose( disposing );
  42. }
  43. #region Windows Form Designer generated code
  44. /// <summary>
  45. /// Required method for Designer support - do not modify
  46. /// the contents of this method with the code editor.
  47. /// </summary>
  48. private void InitializeComponent()
  49. {
  50.       this.btnOtherForm = new System.Windows.Forms.Button();
  51.       this.lblOutput = new System.Windows.Forms.Label();
  52.       this.SuspendLayout();
  53.       // 
  54.       // btnOtherForm
  55.       // 
  56.       this.btnOtherForm.Location = new System.Drawing.Point(104, 104);
  57.       this.btnOtherForm.Name = "btnOtherForm";
  58.       this.btnOtherForm.TabIndex = 0;
  59.       this.btnOtherForm.Text = "Other Form";
  60.       this.btnOtherForm.Click += new System.EventHandler(this.btnOtherForm_Click);
  61.       // 
  62.       // lblOutput
  63.       // 
  64.       this.lblOutput.Location = new System.Drawing.Point(16, 24);
  65.       this.lblOutput.Name = "lblOutput";
  66.       this.lblOutput.Size = new System.Drawing.Size(328, 56);
  67.       this.lblOutput.TabIndex = 1;
  68.       this.lblOutput.Text = "This is a sample client application. Click the button to see something happen.";
  69.       // 
  70.       // SampleClient
  71.       // 
  72.       this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
  73.       this.ClientSize = new System.Drawing.Size(352, 165);
  74.       this.Controls.Add(this.lblOutput);
  75.       this.Controls.Add(this.btnOtherForm);
  76.       this.Name = "SampleClient";
  77.       this.Text = "Sample Client";
  78.       this.ResumeLayout(false);
  79.     }
  80. #endregion
  81. /// <summary>
  82. /// The main entry point for the application.
  83. /// </summary>
  84.     [STAThread]
  85.     static void Main() 
  86.     {
  87.       Application.Run(new SampleClient());
  88.     }
  89.     private void btnOtherForm_Click(object sender, System.EventArgs e)
  90.     {
  91.       this.lblOutput.Text = AppSupport.Support.GetDateTimeInfo(); 
  92.     }
  93. }
  94. }