OTSPropertyWindow.Designer.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. namespace OTSMeasureApp
  2. {
  3. partial class OTSPropertyWindow
  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(OTSPropertyWindow));
  29. this.TSGridTitle = new System.Windows.Forms.ToolStrip();
  30. this.TSEdit = new System.Windows.Forms.ToolStripButton();
  31. this.TSSaveAs = new System.Windows.Forms.ToolStripButton();
  32. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  33. this.TSLoad = new System.Windows.Forms.ToolStripButton();
  34. this.PropGrid = new SourceGrid.Grid();
  35. this.TSGridTitle.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // TSGridTitle
  39. //
  40. this.TSGridTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  41. | System.Windows.Forms.AnchorStyles.Right)));
  42. this.TSGridTitle.AutoSize = false;
  43. this.TSGridTitle.BackColor = System.Drawing.Color.LightGray;
  44. this.TSGridTitle.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TSGridTitle.BackgroundImage")));
  45. this.TSGridTitle.Dock = System.Windows.Forms.DockStyle.None;
  46. this.TSGridTitle.GripMargin = new System.Windows.Forms.Padding(0);
  47. this.TSGridTitle.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
  48. this.TSGridTitle.ImageScalingSize = new System.Drawing.Size(24, 24);
  49. this.TSGridTitle.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  50. this.TSEdit,
  51. this.TSSaveAs,
  52. this.toolStripSeparator2,
  53. this.TSLoad});
  54. this.TSGridTitle.Location = new System.Drawing.Point(0, 1);
  55. this.TSGridTitle.Name = "TSGridTitle";
  56. this.TSGridTitle.Padding = new System.Windows.Forms.Padding(0);
  57. this.TSGridTitle.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  58. this.TSGridTitle.ShowItemToolTips = false;
  59. this.TSGridTitle.Size = new System.Drawing.Size(226, 26);
  60. this.TSGridTitle.Stretch = true;
  61. this.TSGridTitle.TabIndex = 6;
  62. this.TSGridTitle.Text = "TSGridTitle";
  63. this.TSGridTitle.Paint += new System.Windows.Forms.PaintEventHandler(this.toolStrip1_Paint);
  64. //
  65. // TSEdit
  66. //
  67. this.TSEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  68. this.TSEdit.Image = ((System.Drawing.Image)(resources.GetObject("TSEdit.Image")));
  69. this.TSEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
  70. this.TSEdit.Name = "TSEdit";
  71. this.TSEdit.Size = new System.Drawing.Size(28, 23);
  72. this.TSEdit.Text = "toolStripButton1";
  73. this.TSEdit.Visible = false;
  74. this.TSEdit.Click += new System.EventHandler(this.TSEdit_Click);
  75. //
  76. // TSSaveAs
  77. //
  78. this.TSSaveAs.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  79. this.TSSaveAs.Image = ((System.Drawing.Image)(resources.GetObject("TSSaveAs.Image")));
  80. this.TSSaveAs.ImageTransparentColor = System.Drawing.Color.Magenta;
  81. this.TSSaveAs.Name = "TSSaveAs";
  82. this.TSSaveAs.Size = new System.Drawing.Size(28, 23);
  83. this.TSSaveAs.Text = "toolStripButton3";
  84. this.TSSaveAs.Click += new System.EventHandler(this.TSSaveAs_Click);
  85. //
  86. // toolStripSeparator2
  87. //
  88. this.toolStripSeparator2.Name = "toolStripSeparator2";
  89. this.toolStripSeparator2.Size = new System.Drawing.Size(6, 26);
  90. //
  91. // TSLoad
  92. //
  93. this.TSLoad.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  94. this.TSLoad.Image = global::OTSMeasureApp.Properties.Resources.Open16;
  95. this.TSLoad.ImageTransparentColor = System.Drawing.Color.Magenta;
  96. this.TSLoad.Name = "TSLoad";
  97. this.TSLoad.Size = new System.Drawing.Size(28, 23);
  98. this.TSLoad.Click += new System.EventHandler(this.TSLoad_Click);
  99. //
  100. // PropGrid
  101. //
  102. this.PropGrid.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  103. | System.Windows.Forms.AnchorStyles.Left)
  104. | System.Windows.Forms.AnchorStyles.Right)));
  105. this.PropGrid.EnableSort = true;
  106. this.PropGrid.Location = new System.Drawing.Point(0, 27);
  107. this.PropGrid.Name = "PropGrid";
  108. this.PropGrid.OptimizeMode = SourceGrid.CellOptimizeMode.ForRows;
  109. this.PropGrid.SelectionMode = SourceGrid.GridSelectionMode.Cell;
  110. this.PropGrid.Size = new System.Drawing.Size(226, 631);
  111. this.PropGrid.TabIndex = 5;
  112. this.PropGrid.TabStop = true;
  113. this.PropGrid.ToolTipText = "";
  114. this.PropGrid.Click += new System.EventHandler(this.PropGrid_Click_1);
  115. //
  116. // OTSPropertyWindow
  117. //
  118. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  119. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  120. this.BackColor = System.Drawing.SystemColors.Control;
  121. this.ClientSize = new System.Drawing.Size(226, 659);
  122. this.CloseButtonVisible = false;
  123. this.Controls.Add(this.TSGridTitle);
  124. this.Controls.Add(this.PropGrid);
  125. this.DockAreas = ((OTS.WinFormsUI.Docking.DockAreas)((((OTS.WinFormsUI.Docking.DockAreas.DockLeft | OTS.WinFormsUI.Docking.DockAreas.DockRight)
  126. | OTS.WinFormsUI.Docking.DockAreas.DockTop)
  127. | OTS.WinFormsUI.Docking.DockAreas.DockBottom)));
  128. this.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  129. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  130. this.Margin = new System.Windows.Forms.Padding(4);
  131. this.Name = "OTSPropertyWindow";
  132. this.Text = "属性窗口";
  133. this.Load += new System.EventHandler(this.OTSPropertyWindow_Load);
  134. this.Resize += new System.EventHandler(this.OTSPropertyWindow_Resize);
  135. this.TSGridTitle.ResumeLayout(false);
  136. this.TSGridTitle.PerformLayout();
  137. this.ResumeLayout(false);
  138. }
  139. #endregion
  140. public System.Windows.Forms.ToolStrip TSGridTitle;
  141. public System.Windows.Forms.ToolStripButton TSEdit;
  142. public System.Windows.Forms.ToolStripButton TSSaveAs;
  143. public SourceGrid.Grid PropGrid;
  144. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  145. public System.Windows.Forms.ToolStripButton TSLoad;
  146. }
  147. }