MainForm.Designer.cs
上传用户:linger1010
上传日期:2008-12-08
资源大小:561k
文件大小:2k
源码类别:

Windows Mobile

开发平台:

C#

  1. namespace ControllingSIP
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. private System.Windows.Forms.MainMenu mainMenu1;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if(disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.mainMenu1 = new System.Windows.Forms.MainMenu();
  30. this.m_chkOpenSIP = new System.Windows.Forms.CheckBox();
  31. this.m_cmbInputMethods = new System.Windows.Forms.ComboBox();
  32. this.SuspendLayout();
  33. // 
  34. // m_chkOpenSIP
  35. // 
  36. this.m_chkOpenSIP.Location = new System.Drawing.Point(17, 18);
  37. this.m_chkOpenSIP.Name = "m_chkOpenSIP";
  38. this.m_chkOpenSIP.Size = new System.Drawing.Size(100, 20);
  39. this.m_chkOpenSIP.TabIndex = 0;
  40. this.m_chkOpenSIP.Text = "Open SIP";
  41. this.m_chkOpenSIP.CheckStateChanged += new System.EventHandler(this.m_chkOpenSIP_CheckStateChanged);
  42. // 
  43. // m_cmbInputMethods
  44. // 
  45. this.m_cmbInputMethods.Location = new System.Drawing.Point(123, 18);
  46. this.m_cmbInputMethods.Name = "m_cmbInputMethods";
  47. this.m_cmbInputMethods.Size = new System.Drawing.Size(100, 22);
  48. this.m_cmbInputMethods.TabIndex = 1;
  49. this.m_cmbInputMethods.SelectedIndexChanged += new System.EventHandler(this.m_cmbInputMethods_SelectedIndexChanged);
  50. // 
  51. // MainForm
  52. // 
  53. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  54. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  55. this.AutoScroll = true;
  56. this.ClientSize = new System.Drawing.Size(240, 268);
  57. this.Controls.Add(this.m_cmbInputMethods);
  58. this.Controls.Add(this.m_chkOpenSIP);
  59. this.Menu = this.mainMenu1;
  60. this.Name = "MainForm";
  61. this.Text = "SIP";
  62. this.ResumeLayout(false);
  63. }
  64. #endregion
  65. private System.Windows.Forms.CheckBox m_chkOpenSIP;
  66. private System.Windows.Forms.ComboBox m_cmbInputMethods;
  67. }
  68. }