MainForm.Designer.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. namespace GpuCgServer
  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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  29. this.gridLog = new DevExpress.XtraGrid.GridControl();
  30. this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
  31. ((System.ComponentModel.ISupportInitialize)(this.gridLog)).BeginInit();
  32. ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // gridLog
  36. //
  37. this.gridLog.Dock = System.Windows.Forms.DockStyle.Fill;
  38. this.gridLog.Location = new System.Drawing.Point(0, 0);
  39. this.gridLog.MainView = this.gridView1;
  40. this.gridLog.Name = "gridLog";
  41. this.gridLog.Size = new System.Drawing.Size(823, 394);
  42. this.gridLog.TabIndex = 0;
  43. this.gridLog.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
  44. this.gridView1});
  45. //
  46. // gridView1
  47. //
  48. this.gridView1.GridControl = this.gridLog;
  49. this.gridView1.Name = "gridView1";
  50. //
  51. // MainForm
  52. //
  53. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  54. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  55. this.ClientSize = new System.Drawing.Size(823, 394);
  56. this.Controls.Add(this.gridLog);
  57. this.IconOptions.SvgImage = ((DevExpress.Utils.Svg.SvgImage)(resources.GetObject("MainForm.IconOptions.SvgImage")));
  58. this.Name = "MainForm";
  59. this.Text = "CPU参估服务";
  60. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
  61. this.Load += new System.EventHandler(this.MainForm_LoadAsync);
  62. ((System.ComponentModel.ISupportInitialize)(this.gridLog)).EndInit();
  63. ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
  64. this.ResumeLayout(false);
  65. }
  66. #endregion
  67. private DevExpress.XtraGrid.GridControl gridLog;
  68. private DevExpress.XtraGrid.Views.Grid.GridView gridView1;
  69. }
  70. }