frmComSet.cs
上传用户:svehicle
上传日期:2013-07-27
资源大小:62k
文件大小:4k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. namespace CSharpSerialPort
  7. {
  8. /// <summary>
  9. /// frmComSet 的摘要说明。
  10. /// </summary>
  11. public class frmComSet : System.Windows.Forms.Form
  12. {
  13. public frmComSet()
  14. {
  15. //
  16. // Windows 窗体设计器支持所必需的
  17. //
  18. InitializeComponent();
  19. //
  20. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  21. //
  22. }
  23. private System.Windows.Forms.ComboBox comboBox1;
  24. private System.Windows.Forms.Button button1;
  25. private System.Windows.Forms.Label label1;
  26. private System.Windows.Forms.Label label2;
  27. private Microsoft.WindowsCE.Forms.InputPanel inputPanel1;
  28. private System.Windows.Forms.ComboBox comboBox2;
  29. private System.Windows.Forms.MainMenu mainMenu1;
  30. private System.Windows.Forms.MenuItem menuItem1;
  31. private cResult r;
  32. public frmComSet(cResult r):this()
  33.      {
  34.     this.r = r;
  35.      }
  36. /// <summary>
  37. /// 清理所有正在使用的资源。
  38. /// </summary>
  39. protected override void Dispose( bool disposing )
  40. {
  41. base.Dispose( disposing );
  42. }
  43. #region Windows 窗体设计器生成的代码
  44. /// <summary>
  45. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  46. /// 此方法的内容。
  47. /// </summary>
  48. private void InitializeComponent()
  49. {
  50. this.comboBox1 = new System.Windows.Forms.ComboBox();
  51. this.button1 = new System.Windows.Forms.Button();
  52. this.label1 = new System.Windows.Forms.Label();
  53. this.label2 = new System.Windows.Forms.Label();
  54. this.inputPanel1 = new Microsoft.WindowsCE.Forms.InputPanel();
  55. this.comboBox2 = new System.Windows.Forms.ComboBox();
  56. this.mainMenu1 = new System.Windows.Forms.MainMenu();
  57. this.menuItem1 = new System.Windows.Forms.MenuItem();
  58. // 
  59. // comboBox1
  60. // 
  61. this.comboBox1.Items.Add("2400");
  62. this.comboBox1.Items.Add("9600");
  63. this.comboBox1.Location = new System.Drawing.Point(88, 64);
  64. this.comboBox1.Size = new System.Drawing.Size(104, 20);
  65. // 
  66. // button1
  67. // 
  68. this.button1.Location = new System.Drawing.Point(56, 200);
  69. this.button1.Size = new System.Drawing.Size(96, 24);
  70. this.button1.Text = "确定";
  71. this.button1.Click += new System.EventHandler(this.button1_Click);
  72. // 
  73. // label1
  74. // 
  75. this.label1.Location = new System.Drawing.Point(16, 64);
  76. this.label1.Size = new System.Drawing.Size(56, 16);
  77. this.label1.Text = "波特率";
  78. // 
  79. // label2
  80. // 
  81. this.label2.Location = new System.Drawing.Point(8, 104);
  82. this.label2.Size = new System.Drawing.Size(72, 16);
  83. this.label2.Text = "定时器延时";
  84. // 
  85. // comboBox2
  86. // 
  87. this.comboBox2.Items.Add("50");
  88. this.comboBox2.Items.Add("100");
  89. this.comboBox2.Items.Add("300");
  90. this.comboBox2.Items.Add("400");
  91. this.comboBox2.Items.Add("500");
  92. this.comboBox2.Items.Add("600");
  93. this.comboBox2.Items.Add("700");
  94. this.comboBox2.Items.Add("800");
  95. this.comboBox2.Items.Add("900");
  96. this.comboBox2.Items.Add("1000");
  97. this.comboBox2.Items.Add("1500");
  98. this.comboBox2.Location = new System.Drawing.Point(88, 104);
  99. this.comboBox2.Size = new System.Drawing.Size(104, 20);
  100. // 
  101. // mainMenu1
  102. // 
  103. this.mainMenu1.MenuItems.Add(this.menuItem1);
  104. // 
  105. // menuItem1
  106. // 
  107. this.menuItem1.Text = "    ";
  108. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  109. // 
  110. // frmComSet
  111. // 
  112. this.BackColor = System.Drawing.Color.White;
  113. this.ClientSize = new System.Drawing.Size(234, 255);
  114. this.Controls.Add(this.comboBox2);
  115. this.Controls.Add(this.label2);
  116. this.Controls.Add(this.label1);
  117. this.Controls.Add(this.button1);
  118. this.Controls.Add(this.comboBox1);
  119. this.Menu = this.mainMenu1;
  120. this.Text = "frmComSet";
  121. }
  122. #endregion
  123. private void button1_Click(object sender, System.EventArgs e)
  124. {
  125. r.Result1 = comboBox1.Text;
  126. r.Result2 = comboBox2.Text;
  127. this.Close();
  128. }
  129. }
  130. }