frmExcelViewer.Designer.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. 
  2. namespace wispro.sp.winform
  3. {
  4. partial class frmExcelViewer
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  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.dataGridView1 = new System.Windows.Forms.DataGridView();
  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.Dock = System.Windows.Forms.DockStyle.Fill;
  37. this.dataGridView1.Location = new System.Drawing.Point(0, 0);
  38. this.dataGridView1.Name = "dataGridView1";
  39. this.dataGridView1.RowHeadersWidth = 62;
  40. this.dataGridView1.RowTemplate.Height = 30;
  41. this.dataGridView1.Size = new System.Drawing.Size(800, 450);
  42. this.dataGridView1.TabIndex = 0;
  43. this.dataGridView1.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridView1_RowPostPaint);
  44. //
  45. // frmExcelViewer
  46. //
  47. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  48. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  49. this.ClientSize = new System.Drawing.Size(800, 450);
  50. this.Controls.Add(this.dataGridView1);
  51. this.Name = "frmExcelViewer";
  52. this.Text = "frmExcelViewer";
  53. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  54. this.ResumeLayout(false);
  55. }
  56. #endregion
  57. private System.Windows.Forms.DataGridView dataGridView1;
  58. }
  59. }