SimpleGanttChartView.Designer.cs 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. namespace GanttChartPoC.GanttChart
  2. {
  3. partial class SimpleGanttChart
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. this.ChartPictureBox = new System.Windows.Forms.PictureBox();
  30. this.TaskToolTip = new System.Windows.Forms.ToolTip(this.components);
  31. ((System.ComponentModel.ISupportInitialize)(this.ChartPictureBox)).BeginInit();
  32. this.SuspendLayout();
  33. //
  34. // ChartPictureBox
  35. //
  36. this.ChartPictureBox.Location = new System.Drawing.Point(7, 7);
  37. this.ChartPictureBox.Margin = new System.Windows.Forms.Padding(4);
  38. this.ChartPictureBox.Name = "ChartPictureBox";
  39. this.ChartPictureBox.Size = new System.Drawing.Size(603, 437);
  40. this.ChartPictureBox.TabIndex = 0;
  41. this.ChartPictureBox.TabStop = false;
  42. this.ChartPictureBox.Paint += new System.Windows.Forms.PaintEventHandler(this.ChartPictureBox_Paint);
  43. this.ChartPictureBox.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ChartPictureBox_MouseDown);
  44. this.ChartPictureBox.MouseMove += new System.Windows.Forms.MouseEventHandler(this.ChartPictureBox_MouseMove);
  45. this.ChartPictureBox.MouseUp += new System.Windows.Forms.MouseEventHandler(this.ChartPictureBox_MouseUp);
  46. //
  47. // SimpleGanttChart
  48. //
  49. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
  50. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  51. this.AutoScroll = true;
  52. this.Controls.Add(this.ChartPictureBox);
  53. this.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  54. this.Margin = new System.Windows.Forms.Padding(4);
  55. this.Name = "SimpleGanttChart";
  56. this.Size = new System.Drawing.Size(897, 544);
  57. ((System.ComponentModel.ISupportInitialize)(this.ChartPictureBox)).EndInit();
  58. this.ResumeLayout(false);
  59. }
  60. #endregion
  61. private System.Windows.Forms.PictureBox ChartPictureBox;
  62. private System.Windows.Forms.ToolTip TaskToolTip;
  63. }
  64. }