Form2.Designer.cs 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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.SuspendLayout();
  35. //
  36. // rtfRichTextBox1
  37. //
  38. this.rtfRichTextBox1.BackColor = System.Drawing.Color.SeaShell;
  39. this.rtfRichTextBox1.HiglightColor = CCWin.SkinControl.RtfRichTextBox.RtfColor.White;
  40. this.rtfRichTextBox1.Location = new System.Drawing.Point(448, 46);
  41. this.rtfRichTextBox1.Name = "rtfRichTextBox1";
  42. this.rtfRichTextBox1.Size = new System.Drawing.Size(865, 531);
  43. this.rtfRichTextBox1.TabIndex = 0;
  44. this.rtfRichTextBox1.Text = "";
  45. this.rtfRichTextBox1.TextColor = CCWin.SkinControl.RtfRichTextBox.RtfColor.Green;
  46. //
  47. // skinListView1
  48. //
  49. this.skinListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  50. this.columnHeader1});
  51. this.skinListView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
  52. listViewItem1});
  53. this.skinListView1.Location = new System.Drawing.Point(29, 61);
  54. this.skinListView1.Name = "skinListView1";
  55. this.skinListView1.OwnerDraw = true;
  56. this.skinListView1.Size = new System.Drawing.Size(121, 383);
  57. this.skinListView1.TabIndex = 1;
  58. this.skinListView1.UseCompatibleStateImageBehavior = false;
  59. this.skinListView1.View = System.Windows.Forms.View.Details;
  60. //
  61. // Form2
  62. //
  63. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  64. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  65. this.BackColor = System.Drawing.Color.SkyBlue;
  66. this.ClientSize = new System.Drawing.Size(1351, 666);
  67. this.Controls.Add(this.skinListView1);
  68. this.Controls.Add(this.rtfRichTextBox1);
  69. this.Name = "Form2";
  70. this.Text = "记事本";
  71. this.Load += new System.EventHandler(this.Form2_Load);
  72. this.ResumeLayout(false);
  73. }
  74. #endregion
  75. private System.Windows.Forms.Timer BackColorTimer;
  76. private CCWin.SkinControl.RtfRichTextBox rtfRichTextBox1;
  77. private CCWin.SkinControl.SkinListView skinListView1;
  78. private System.Windows.Forms.ColumnHeader columnHeader1;
  79. }
  80. }