DataViewForm.Designer.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. namespace FastReport.Forms
  2. {
  3. partial class DataViewForm
  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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. this.stStatus = new System.Windows.Forms.StatusStrip();
  30. this.lblRows = new System.Windows.Forms.ToolStripStatusLabel();
  31. this.btnFirst = new System.Windows.Forms.ToolStripButton();
  32. this.btnPrior = new System.Windows.Forms.ToolStripButton();
  33. this.btnNext = new System.Windows.Forms.ToolStripButton();
  34. this.btnLast = new System.Windows.Forms.ToolStripButton();
  35. this.grid = new System.Windows.Forms.DataGridView();
  36. this.stStatus.SuspendLayout();
  37. ((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // stStatus
  41. //
  42. this.stStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  43. this.lblRows,
  44. this.btnFirst,
  45. this.btnPrior,
  46. this.btnNext,
  47. this.btnLast});
  48. this.stStatus.Location = new System.Drawing.Point(0, 339);
  49. this.stStatus.Name = "stStatus";
  50. this.stStatus.Size = new System.Drawing.Size(584, 22);
  51. this.stStatus.TabIndex = 0;
  52. //
  53. // lblRows
  54. //
  55. this.lblRows.Name = "lblRows";
  56. this.lblRows.Size = new System.Drawing.Size(477, 17);
  57. this.lblRows.Spring = true;
  58. this.lblRows.Text = "0 row(s)";
  59. this.lblRows.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  60. //
  61. // btnFirst
  62. //
  63. this.btnFirst.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  64. this.btnFirst.Name = "btnFirst";
  65. this.btnFirst.Size = new System.Drawing.Size(26, 23);
  66. this.btnFirst.Click += new System.EventHandler(this.btnFirst_Click);
  67. //
  68. // btnPrior
  69. //
  70. this.btnPrior.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  71. this.btnPrior.Name = "btnPrior";
  72. this.btnPrior.Size = new System.Drawing.Size(26, 23);
  73. this.btnPrior.Click += new System.EventHandler(this.btnPrior_Click);
  74. //
  75. // btnNext
  76. //
  77. this.btnNext.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  78. this.btnNext.Name = "btnNext";
  79. this.btnNext.Size = new System.Drawing.Size(26, 23);
  80. this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
  81. //
  82. // btnLast
  83. //
  84. this.btnLast.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  85. this.btnLast.Name = "btnLast";
  86. this.btnLast.Size = new System.Drawing.Size(26, 23);
  87. this.btnLast.Click += new System.EventHandler(this.btnLast_Click);
  88. //
  89. // grid
  90. //
  91. this.grid.AllowUserToAddRows = false;
  92. this.grid.AllowUserToDeleteRows = false;
  93. dataGridViewCellStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
  94. this.grid.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  95. this.grid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
  96. this.grid.BackgroundColor = System.Drawing.SystemColors.Window;
  97. this.grid.BorderStyle = System.Windows.Forms.BorderStyle.None;
  98. this.grid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  99. this.grid.Dock = System.Windows.Forms.DockStyle.Fill;
  100. this.grid.GridColor = System.Drawing.Color.LightGray;
  101. this.grid.Location = new System.Drawing.Point(0, 0);
  102. this.grid.Name = "grid";
  103. this.grid.ReadOnly = true;
  104. this.grid.RowHeadersVisible = false;
  105. this.grid.Size = new System.Drawing.Size(584, 339);
  106. this.grid.TabIndex = 1;
  107. this.grid.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.grid_DataError);
  108. //
  109. // DataViewForm
  110. //
  111. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  112. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  113. this.ClientSize = new System.Drawing.Size(584, 361);
  114. this.Controls.Add(this.grid);
  115. this.Controls.Add(this.stStatus);
  116. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  117. this.Name = "DataViewForm";
  118. this.Text = "View Data";
  119. this.Shown += new System.EventHandler(this.DataViewForm_Shown);
  120. this.stStatus.ResumeLayout(false);
  121. this.stStatus.PerformLayout();
  122. ((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
  123. this.ResumeLayout(false);
  124. this.PerformLayout();
  125. }
  126. #endregion
  127. private System.Windows.Forms.StatusStrip stStatus;
  128. private System.Windows.Forms.ToolStripStatusLabel lblRows;
  129. private System.Windows.Forms.ToolStripButton btnPrior;
  130. private System.Windows.Forms.ToolStripButton btnNext;
  131. private System.Windows.Forms.ToolStripButton btnLast;
  132. private System.Windows.Forms.ToolStripButton btnFirst;
  133. private System.Windows.Forms.DataGridView grid;
  134. }
  135. }