PageRenderTime 40ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/CSWinFormDataGridView/MultipleLayeredColumnHeader/MainForm.Designer.cs

#
C# | 76 lines | 50 code | 6 blank | 20 comment | 3 complexity | 7479b82483aa30bb7128e197ec14bdaf MD5 | raw file
  1. namespace CSWinFormDataGridView.MultipleLayeredColumnHeader
  2. {
  3. partial class MainForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  29. this.label1 = new System.Windows.Forms.Label();
  30. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  31. this.SuspendLayout();
  32. //
  33. // dataGridView1
  34. //
  35. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  36. this.dataGridView1.Location = new System.Drawing.Point(22, 54);
  37. this.dataGridView1.Name = "dataGridView1";
  38. this.dataGridView1.Size = new System.Drawing.Size(621, 389);
  39. this.dataGridView1.TabIndex = 0;
  40. //
  41. // label1
  42. //
  43. this.label1.AutoSize = true;
  44. this.label1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  45. this.label1.Location = new System.Drawing.Point(17, 18);
  46. this.label1.Name = "label1";
  47. this.label1.Size = new System.Drawing.Size(626, 16);
  48. this.label1.TabIndex = 1;
  49. this.label1.Text = "This sample demonstrates how to display multiple layer column headers on the Data" +
  50. "GridView.";
  51. //
  52. // MainForm
  53. //
  54. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  55. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  56. this.ClientSize = new System.Drawing.Size(667, 473);
  57. this.Controls.Add(this.label1);
  58. this.Controls.Add(this.dataGridView1);
  59. this.Name = "MainForm";
  60. this.Text = "MainForm";
  61. this.Load += new System.EventHandler(this.MainForm_Load);
  62. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  63. this.ResumeLayout(false);
  64. this.PerformLayout();
  65. }
  66. #endregion
  67. private System.Windows.Forms.DataGridView dataGridView1;
  68. private System.Windows.Forms.Label label1;
  69. }
  70. }