Form2.Designer.cs 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. namespace TestProject
  2. {
  3. partial class Form2
  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. this.components = new System.ComponentModel.Container();
  29. System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("");
  30. this.BackColorTimer = new System.Windows.Forms.Timer(this.components);
  31. this.rtfRichTextBox1 = new CCWin.SkinControl.RtfRichTextBox();
  32. this.skinListView1 = new CCWin.SkinControl.SkinListView();
  33. this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  34. this.button1 = new System.Windows.Forms.Button();
  35. this.SuspendLayout();
  36. //
  37. // rtfRichTextBox1
  38. //
  39. this.rtfRichTextBox1.BackColor = System.Drawing.Color.SeaShell;
  40. this.rtfRichTextBox1.HiglightColor = CCWin.SkinControl.RtfRichTextBox.RtfColor.White;
  41. this.rtfRichTextBox1.Location = new System.Drawing.Point(448, 46);
  42. this.rtfRichTextBox1.Name = "rtfRichTextBox1";
  43. this.rtfRichTextBox1.Size = new System.Drawing.Size(865, 531);
  44. this.rtfRichTextBox1.TabIndex = 0;
  45. this.rtfRichTextBox1.Text = "";
  46. this.rtfRichTextBox1.TextColor = CCWin.SkinControl.RtfRichTextBox.RtfColor.Green;
  47. //
  48. // skinListView1
  49. //
  50. this.skinListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  51. this.columnHeader1});
  52. this.skinListView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
  53. listViewItem1});
  54. this.skinListView1.Location = new System.Drawing.Point(59, 99);
  55. this.skinListView1.Name = "skinListView1";
  56. this.skinListView1.OwnerDraw = true;
  57. this.skinListView1.Size = new System.Drawing.Size(121, 383);
  58. this.skinListView1.TabIndex = 1;
  59. this.skinListView1.UseCompatibleStateImageBehavior = false;
  60. this.skinListView1.View = System.Windows.Forms.View.Details;
  61. //
  62. // button1
  63. //
  64. this.button1.Location = new System.Drawing.Point(283, 171);
  65. this.button1.Name = "button1";
  66. this.button1.Size = new System.Drawing.Size(75, 23);
  67. this.button1.TabIndex = 2;
  68. this.button1.Text = "button1";
  69. this.button1.UseVisualStyleBackColor = true;
  70. this.button1.Click += new System.EventHandler(this.button1_Click);
  71. //
  72. // Form2
  73. //
  74. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  75. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  76. this.BackColor = System.Drawing.Color.SkyBlue;
  77. this.ClientSize = new System.Drawing.Size(1351, 666);
  78. this.Controls.Add(this.button1);
  79. this.Controls.Add(this.skinListView1);
  80. this.Controls.Add(this.rtfRichTextBox1);
  81. this.Name = "Form2";
  82. this.Text = "记事本";
  83. this.Load += new System.EventHandler(this.Form2_Load);
  84. this.ResumeLayout(false);
  85. }
  86. #endregion
  87. private System.Windows.Forms.Timer BackColorTimer;
  88. private CCWin.SkinControl.RtfRichTextBox rtfRichTextBox1;
  89. private CCWin.SkinControl.SkinListView skinListView1;
  90. private System.Windows.Forms.ColumnHeader columnHeader1;
  91. private System.Windows.Forms.Button button1;
  92. }
  93. }