ToTableForm.Designer.cs 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. 
  2. namespace BurronModel.JsonToTable
  3. {
  4. partial class ToTableForm
  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.panel1 = new System.Windows.Forms.Panel();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  32. this.panel1.SuspendLayout();
  33. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // panel1
  37. //
  38. this.panel1.Controls.Add(this.button1);
  39. this.panel1.Controls.Add(this.dataGridView1);
  40. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  41. this.panel1.Location = new System.Drawing.Point(0, 0);
  42. this.panel1.Name = "panel1";
  43. this.panel1.Size = new System.Drawing.Size(800, 450);
  44. this.panel1.TabIndex = 0;
  45. //
  46. // button1
  47. //
  48. this.button1.Location = new System.Drawing.Point(501, 415);
  49. this.button1.Name = "button1";
  50. this.button1.Size = new System.Drawing.Size(251, 23);
  51. this.button1.TabIndex = 1;
  52. this.button1.Text = "button1";
  53. this.button1.UseVisualStyleBackColor = true;
  54. this.button1.Click += new System.EventHandler(this.button1_Click);
  55. //
  56. // dataGridView1
  57. //
  58. this.dataGridView1.AllowUserToAddRows = false;
  59. this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
  60. this.dataGridView1.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllCells;
  61. this.dataGridView1.BackgroundColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
  62. this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  63. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  64. this.dataGridView1.Location = new System.Drawing.Point(12, 12);
  65. this.dataGridView1.Name = "dataGridView1";
  66. this.dataGridView1.RowTemplate.Height = 23;
  67. this.dataGridView1.Size = new System.Drawing.Size(776, 367);
  68. this.dataGridView1.TabIndex = 0;
  69. //
  70. // ToTableForm
  71. //
  72. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  73. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  74. this.ClientSize = new System.Drawing.Size(800, 450);
  75. this.Controls.Add(this.panel1);
  76. this.Name = "ToTableForm";
  77. this.Text = "ToTableForm";
  78. this.Load += new System.EventHandler(this.ToTableForm_Load);
  79. this.panel1.ResumeLayout(false);
  80. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  81. this.ResumeLayout(false);
  82. }
  83. #endregion
  84. private System.Windows.Forms.Panel panel1;
  85. private System.Windows.Forms.DataGridView dataGridView1;
  86. private System.Windows.Forms.Button button1;
  87. }
  88. }