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

Windows Mobile

开发平台:

C#

  1. namespace UsingStringFormat
  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_lblHAlign = new System.Windows.Forms.Label();
  31. this.m_lblVAlign = new System.Windows.Forms.Label();
  32. this.m_cmbHAlign = new System.Windows.Forms.ComboBox();
  33. this.m_cmbVAlign = new System.Windows.Forms.ComboBox();
  34. this.m_chkNoClip = new System.Windows.Forms.CheckBox();
  35. this.m_chkNoWrap = new System.Windows.Forms.CheckBox();
  36. this.SuspendLayout();
  37. // 
  38. // m_lblHAlign
  39. // 
  40. this.m_lblHAlign.Location = new System.Drawing.Point(4, 4);
  41. this.m_lblHAlign.Name = "m_lblHAlign";
  42. this.m_lblHAlign.Size = new System.Drawing.Size(128, 20);
  43. this.m_lblHAlign.Text = "Horizontal Alignment:";
  44. // 
  45. // m_lblVAlign
  46. // 
  47. this.m_lblVAlign.Location = new System.Drawing.Point(4, 31);
  48. this.m_lblVAlign.Name = "m_lblVAlign";
  49. this.m_lblVAlign.Size = new System.Drawing.Size(128, 20);
  50. this.m_lblVAlign.Text = "Vertical Alignment:";
  51. // 
  52. // m_cmbHAlign
  53. // 
  54. this.m_cmbHAlign.Items.Add("Near");
  55. this.m_cmbHAlign.Items.Add("Center");
  56. this.m_cmbHAlign.Items.Add("Far");
  57. this.m_cmbHAlign.Location = new System.Drawing.Point(139, 1);
  58. this.m_cmbHAlign.Name = "m_cmbHAlign";
  59. this.m_cmbHAlign.Size = new System.Drawing.Size(98, 22);
  60. this.m_cmbHAlign.TabIndex = 2;
  61. this.m_cmbHAlign.SelectedIndexChanged += new System.EventHandler(this.m_onNeedRedraw);
  62. // 
  63. // m_cmbVAlign
  64. // 
  65. this.m_cmbVAlign.Items.Add("Near");
  66. this.m_cmbVAlign.Items.Add("Center");
  67. this.m_cmbVAlign.Items.Add("Far");
  68. this.m_cmbVAlign.Location = new System.Drawing.Point(139, 29);
  69. this.m_cmbVAlign.Name = "m_cmbVAlign";
  70. this.m_cmbVAlign.Size = new System.Drawing.Size(98, 22);
  71. this.m_cmbVAlign.TabIndex = 2;
  72. this.m_cmbVAlign.SelectedIndexChanged += new System.EventHandler(this.m_onNeedRedraw);
  73. // 
  74. // m_chkNoClip
  75. // 
  76. this.m_chkNoClip.Location = new System.Drawing.Point(4, 57);
  77. this.m_chkNoClip.Name = "m_chkNoClip";
  78. this.m_chkNoClip.Size = new System.Drawing.Size(100, 20);
  79. this.m_chkNoClip.TabIndex = 3;
  80. this.m_chkNoClip.Text = "No Clip";
  81. this.m_chkNoClip.CheckStateChanged += new System.EventHandler(this.m_onNeedRedraw);
  82. // 
  83. // m_chkNoWrap
  84. // 
  85. this.m_chkNoWrap.Location = new System.Drawing.Point(110, 57);
  86. this.m_chkNoWrap.Name = "m_chkNoWrap";
  87. this.m_chkNoWrap.Size = new System.Drawing.Size(100, 20);
  88. this.m_chkNoWrap.TabIndex = 3;
  89. this.m_chkNoWrap.Text = "No Wrap";
  90. this.m_chkNoWrap.CheckStateChanged += new System.EventHandler(this.m_onNeedRedraw);
  91. // 
  92. // MainForm
  93. // 
  94. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  95. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  96. this.AutoScroll = true;
  97. this.ClientSize = new System.Drawing.Size(240, 268);
  98. this.Controls.Add(this.m_chkNoWrap);
  99. this.Controls.Add(this.m_chkNoClip);
  100. this.Controls.Add(this.m_cmbVAlign);
  101. this.Controls.Add(this.m_cmbHAlign);
  102. this.Controls.Add(this.m_lblVAlign);
  103. this.Controls.Add(this.m_lblHAlign);
  104. this.Menu = this.mainMenu1;
  105. this.Name = "MainForm";
  106. this.Text = "Formating String";
  107. this.Paint += new System.Windows.Forms.PaintEventHandler(this.MainForm_Paint);
  108. this.ResumeLayout(false);
  109. }
  110. #endregion
  111. private System.Windows.Forms.Label m_lblHAlign;
  112. private System.Windows.Forms.Label m_lblVAlign;
  113. private System.Windows.Forms.ComboBox m_cmbHAlign;
  114. private System.Windows.Forms.ComboBox m_cmbVAlign;
  115. private System.Windows.Forms.CheckBox m_chkNoClip;
  116. private System.Windows.Forms.CheckBox m_chkNoWrap;
  117. }
  118. }