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

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

#
C# | 147 lines | 106 code | 6 blank | 35 comment | 3 complexity | aa3a906b9013c95340a8e9f3f296ab97 MD5 | raw file
  1. namespace CSWinFormDataGridView.DataGridViewPaging
  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.dataGridView1 = new System.Windows.Forms.DataGridView();
  30. this.groupBox1 = new System.Windows.Forms.GroupBox();
  31. this.toolStrip1 = new System.Windows.Forms.ToolStrip();
  32. this.toolStripButtonFirst = new System.Windows.Forms.ToolStripButton();
  33. this.toolStripButtonPrev = new System.Windows.Forms.ToolStripButton();
  34. this.toolStripButtonNext = new System.Windows.Forms.ToolStripButton();
  35. this.toolStripButtonLast = new System.Windows.Forms.ToolStripButton();
  36. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  37. this.groupBox1.SuspendLayout();
  38. this.toolStrip1.SuspendLayout();
  39. this.SuspendLayout();
  40. //
  41. // dataGridView1
  42. //
  43. this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  44. | System.Windows.Forms.AnchorStyles.Left)
  45. | System.Windows.Forms.AnchorStyles.Right)));
  46. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  47. this.dataGridView1.Location = new System.Drawing.Point(3, 44);
  48. this.dataGridView1.Name = "dataGridView1";
  49. this.dataGridView1.Size = new System.Drawing.Size(632, 425);
  50. this.dataGridView1.TabIndex = 0;
  51. //
  52. // groupBox1
  53. //
  54. this.groupBox1.Controls.Add(this.toolStrip1);
  55. this.groupBox1.Controls.Add(this.dataGridView1);
  56. this.groupBox1.Location = new System.Drawing.Point(12, 23);
  57. this.groupBox1.Name = "groupBox1";
  58. this.groupBox1.Size = new System.Drawing.Size(638, 472);
  59. this.groupBox1.TabIndex = 1;
  60. this.groupBox1.TabStop = false;
  61. this.groupBox1.Text = "groupBox1";
  62. //
  63. // toolStrip1
  64. //
  65. this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  66. this.toolStripButtonFirst,
  67. this.toolStripButtonPrev,
  68. this.toolStripButtonNext,
  69. this.toolStripButtonLast});
  70. this.toolStrip1.Location = new System.Drawing.Point(3, 16);
  71. this.toolStrip1.Name = "toolStrip1";
  72. this.toolStrip1.Size = new System.Drawing.Size(632, 25);
  73. this.toolStrip1.TabIndex = 1;
  74. this.toolStrip1.Text = "toolStrip1";
  75. //
  76. // toolStripButtonFirst
  77. //
  78. this.toolStripButtonFirst.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  79. this.toolStripButtonFirst.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonFirst.Image")));
  80. this.toolStripButtonFirst.ImageTransparentColor = System.Drawing.Color.Magenta;
  81. this.toolStripButtonFirst.Name = "toolStripButtonFirst";
  82. this.toolStripButtonFirst.Size = new System.Drawing.Size(59, 22);
  83. this.toolStripButtonFirst.Text = "First Page";
  84. this.toolStripButtonFirst.Click += new System.EventHandler(this.toolStripButtonFirst_Click);
  85. //
  86. // toolStripButtonPrev
  87. //
  88. this.toolStripButtonPrev.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  89. this.toolStripButtonPrev.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonPrev.Image")));
  90. this.toolStripButtonPrev.ImageTransparentColor = System.Drawing.Color.Magenta;
  91. this.toolStripButtonPrev.Name = "toolStripButtonPrev";
  92. this.toolStripButtonPrev.Size = new System.Drawing.Size(79, 22);
  93. this.toolStripButtonPrev.Text = "Previous Page";
  94. this.toolStripButtonPrev.Click += new System.EventHandler(this.toolStripButtonPrev_Click);
  95. //
  96. // toolStripButtonNext
  97. //
  98. this.toolStripButtonNext.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  99. this.toolStripButtonNext.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonNext.Image")));
  100. this.toolStripButtonNext.ImageTransparentColor = System.Drawing.Color.Magenta;
  101. this.toolStripButtonNext.Name = "toolStripButtonNext";
  102. this.toolStripButtonNext.Size = new System.Drawing.Size(61, 22);
  103. this.toolStripButtonNext.Text = "Next Page";
  104. this.toolStripButtonNext.Click += new System.EventHandler(this.toolStripButtonNext_Click);
  105. //
  106. // toolStripButtonLast
  107. //
  108. this.toolStripButtonLast.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  109. this.toolStripButtonLast.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButtonLast.Image")));
  110. this.toolStripButtonLast.ImageTransparentColor = System.Drawing.Color.Magenta;
  111. this.toolStripButtonLast.Name = "toolStripButtonLast";
  112. this.toolStripButtonLast.Size = new System.Drawing.Size(58, 22);
  113. this.toolStripButtonLast.Text = "Last Page";
  114. this.toolStripButtonLast.Click += new System.EventHandler(this.toolStripButtonLast_Click);
  115. //
  116. // MainForm
  117. //
  118. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  119. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  120. this.ClientSize = new System.Drawing.Size(662, 507);
  121. this.Controls.Add(this.groupBox1);
  122. this.Name = "MainForm";
  123. this.Text = "MainForm";
  124. this.Load += new System.EventHandler(this.MainForm_Load);
  125. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  126. this.groupBox1.ResumeLayout(false);
  127. this.groupBox1.PerformLayout();
  128. this.toolStrip1.ResumeLayout(false);
  129. this.toolStrip1.PerformLayout();
  130. this.ResumeLayout(false);
  131. }
  132. #endregion
  133. private System.Windows.Forms.DataGridView dataGridView1;
  134. private System.Windows.Forms.GroupBox groupBox1;
  135. private System.Windows.Forms.ToolStrip toolStrip1;
  136. private System.Windows.Forms.ToolStripButton toolStripButtonFirst;
  137. private System.Windows.Forms.ToolStripButton toolStripButtonPrev;
  138. private System.Windows.Forms.ToolStripButton toolStripButtonNext;
  139. private System.Windows.Forms.ToolStripButton toolStripButtonLast;
  140. }
  141. }