MainForm.Designer.cs 4.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. namespace Waka.Lego.Views
  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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  31. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  32. this.PluginList = new System.Windows.Forms.DataGridViewTextBoxColumn();
  33. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  34. this.SuspendLayout();
  35. //
  36. // dataGridView1
  37. //
  38. this.dataGridView1.AllowUserToAddRows = false;
  39. this.dataGridView1.AllowUserToDeleteRows = false;
  40. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  41. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  42. this.PluginList});
  43. this.dataGridView1.Location = new System.Drawing.Point(12, 12);
  44. this.dataGridView1.Name = "dataGridView1";
  45. this.dataGridView1.ReadOnly = true;
  46. dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  47. dataGridViewCellStyle5.BackColor = System.Drawing.SystemColors.Control;
  48. dataGridViewCellStyle5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  49. dataGridViewCellStyle5.ForeColor = System.Drawing.SystemColors.WindowText;
  50. dataGridViewCellStyle5.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  51. dataGridViewCellStyle5.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  52. dataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  53. this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle5;
  54. this.dataGridView1.RowHeadersVisible = false;
  55. dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  56. this.dataGridView1.RowsDefaultCellStyle = dataGridViewCellStyle6;
  57. this.dataGridView1.RowTemplate.Height = 23;
  58. this.dataGridView1.Size = new System.Drawing.Size(415, 328);
  59. this.dataGridView1.TabIndex = 0;
  60. //
  61. // PluginList
  62. //
  63. this.PluginList.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  64. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  65. this.PluginList.DefaultCellStyle = dataGridViewCellStyle4;
  66. this.PluginList.HeaderText = "插件列表";
  67. this.PluginList.Name = "PluginList";
  68. this.PluginList.ReadOnly = true;
  69. //
  70. // MainForm
  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(439, 352);
  75. this.Controls.Add(this.dataGridView1);
  76. this.Name = "MainForm";
  77. this.Text = "MainForm";
  78. this.Load += new System.EventHandler(this.MainForm_Load);
  79. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  80. this.ResumeLayout(false);
  81. }
  82. #endregion
  83. private System.Windows.Forms.DataGridView dataGridView1;
  84. private System.Windows.Forms.DataGridViewTextBoxColumn PluginList;
  85. }
  86. }