MainForm.Designer.cs 4.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = 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.Dock = System.Windows.Forms.DockStyle.Fill;
  44. this.dataGridView1.Location = new System.Drawing.Point(0, 0);
  45. this.dataGridView1.Name = "dataGridView1";
  46. this.dataGridView1.ReadOnly = true;
  47. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  48. dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
  49. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  50. dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
  51. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  52. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  53. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  54. this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
  55. this.dataGridView1.RowHeadersVisible = false;
  56. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  57. this.dataGridView1.RowsDefaultCellStyle = dataGridViewCellStyle3;
  58. this.dataGridView1.RowTemplate.Height = 23;
  59. this.dataGridView1.Size = new System.Drawing.Size(894, 534);
  60. this.dataGridView1.TabIndex = 0;
  61. this.dataGridView1.DoubleClick += new System.EventHandler(this.dataGridView1_DoubleClick);
  62. //
  63. // PluginList
  64. //
  65. this.PluginList.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
  66. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  67. this.PluginList.DefaultCellStyle = dataGridViewCellStyle1;
  68. this.PluginList.HeaderText = "插件列表";
  69. this.PluginList.Name = "PluginList";
  70. this.PluginList.ReadOnly = true;
  71. //
  72. // MainForm
  73. //
  74. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  76. this.ClientSize = new System.Drawing.Size(894, 534);
  77. this.Controls.Add(this.dataGridView1);
  78. this.Name = "MainForm";
  79. this.Text = "MainForm";
  80. this.Load += new System.EventHandler(this.MainForm_Load);
  81. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  82. this.ResumeLayout(false);
  83. }
  84. #endregion
  85. private System.Windows.Forms.DataGridView dataGridView1;
  86. private System.Windows.Forms.DataGridViewTextBoxColumn PluginList;
  87. }
  88. }