PageRenderTime 45ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
C# | 87 lines | 58 code | 6 blank | 23 comment | 3 complexity | de0d719645dad3ccbc94de78636a3cde MD5 | raw file
  1. namespace CSWinFormDataGridView.CustomDataGridViewColumn
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.employeesDataGridView = new System.Windows.Forms.DataGridView();
  32. ((System.ComponentModel.ISupportInitialize)(this.employeesDataGridView)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // label1
  36. //
  37. this.label1.AutoSize = true;
  38. this.label1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  39. this.label1.Location = new System.Drawing.Point(23, 19);
  40. this.label1.Name = "label1";
  41. this.label1.Size = new System.Drawing.Size(0, 16);
  42. this.label1.TabIndex = 0;
  43. //
  44. // label2
  45. //
  46. this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  47. this.label2.Location = new System.Drawing.Point(23, 19);
  48. this.label2.Name = "label2";
  49. this.label2.Size = new System.Drawing.Size(580, 87);
  50. this.label2.TabIndex = 3;
  51. this.label2.Text = resources.GetString("label2.Text");
  52. //
  53. // employeesDataGridView
  54. //
  55. this.employeesDataGridView.Location = new System.Drawing.Point(26, 119);
  56. this.employeesDataGridView.Name = "employeesDataGridView";
  57. this.employeesDataGridView.RowTemplate.Height = 21;
  58. this.employeesDataGridView.Size = new System.Drawing.Size(577, 299);
  59. this.employeesDataGridView.TabIndex = 2;
  60. //
  61. // MainForm
  62. //
  63. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  64. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  65. this.ClientSize = new System.Drawing.Size(634, 446);
  66. this.Controls.Add(this.label2);
  67. this.Controls.Add(this.employeesDataGridView);
  68. this.Controls.Add(this.label1);
  69. this.Name = "MainForm";
  70. this.Text = "DataGridViewCustomColumn Sample";
  71. this.Load += new System.EventHandler(this.MainForm_Load);
  72. ((System.ComponentModel.ISupportInitialize)(this.employeesDataGridView)).EndInit();
  73. this.ResumeLayout(false);
  74. this.PerformLayout();
  75. }
  76. #endregion
  77. private System.Windows.Forms.Label label1;
  78. private System.Windows.Forms.Label label2;
  79. private System.Windows.Forms.DataGridView employeesDataGridView;
  80. }
  81. }