PropertyWalkerPage.Designer.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. namespace CodingCannon.Pages
  2. {
  3. partial class PropertyWalkerPage
  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. scintilla1 = new ScintillaNET.Scintilla();
  29. SuspendLayout();
  30. //
  31. // scintilla1
  32. //
  33. scintilla1.AutoCMaxHeight = 9;
  34. scintilla1.BiDirectionality = ScintillaNET.BiDirectionalDisplayType.Disabled;
  35. scintilla1.CaretLineVisible = true;
  36. scintilla1.Dock = DockStyle.Fill;
  37. scintilla1.LexerName = null;
  38. scintilla1.Location = new Point(0, 0);
  39. scintilla1.Name = "scintilla1";
  40. scintilla1.ScrollWidth = 226;
  41. scintilla1.Size = new Size(383, 218);
  42. scintilla1.TabIndents = true;
  43. scintilla1.TabIndex = 0;
  44. scintilla1.Text = "<drop .cs source code file>";
  45. scintilla1.UseRightToLeftReadingLayout = false;
  46. scintilla1.WrapMode = ScintillaNET.WrapMode.None;
  47. //
  48. // PropertyWalkerPage
  49. //
  50. AutoScaleDimensions = new SizeF(11F, 24F);
  51. AutoScaleMode = AutoScaleMode.Font;
  52. Controls.Add(scintilla1);
  53. Name = "PropertyWalkerPage";
  54. Size = new Size(383, 218);
  55. ResumeLayout(false);
  56. }
  57. #endregion
  58. private ScintillaNET.Scintilla scintilla1;
  59. }
  60. }