| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- namespace TestProject
- {
- partial class Form2
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("");
- this.BackColorTimer = new System.Windows.Forms.Timer(this.components);
- this.rtfRichTextBox1 = new CCWin.SkinControl.RtfRichTextBox();
- this.skinListView1 = new CCWin.SkinControl.SkinListView();
- this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
- this.SuspendLayout();
- //
- // rtfRichTextBox1
- //
- this.rtfRichTextBox1.BackColor = System.Drawing.Color.SeaShell;
- this.rtfRichTextBox1.HiglightColor = CCWin.SkinControl.RtfRichTextBox.RtfColor.White;
- this.rtfRichTextBox1.Location = new System.Drawing.Point(448, 46);
- this.rtfRichTextBox1.Name = "rtfRichTextBox1";
- this.rtfRichTextBox1.Size = new System.Drawing.Size(865, 531);
- this.rtfRichTextBox1.TabIndex = 0;
- this.rtfRichTextBox1.Text = "";
- this.rtfRichTextBox1.TextColor = CCWin.SkinControl.RtfRichTextBox.RtfColor.Green;
- //
- // skinListView1
- //
- this.skinListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
- this.columnHeader1});
- this.skinListView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
- listViewItem1});
- this.skinListView1.Location = new System.Drawing.Point(29, 61);
- this.skinListView1.Name = "skinListView1";
- this.skinListView1.OwnerDraw = true;
- this.skinListView1.Size = new System.Drawing.Size(121, 383);
- this.skinListView1.TabIndex = 1;
- this.skinListView1.UseCompatibleStateImageBehavior = false;
- this.skinListView1.View = System.Windows.Forms.View.Details;
- //
- // Form2
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.SkyBlue;
- this.ClientSize = new System.Drawing.Size(1351, 666);
- this.Controls.Add(this.skinListView1);
- this.Controls.Add(this.rtfRichTextBox1);
- this.Name = "Form2";
- this.Text = "记事本";
- this.Load += new System.EventHandler(this.Form2_Load);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.Timer BackColorTimer;
- private CCWin.SkinControl.RtfRichTextBox rtfRichTextBox1;
- private CCWin.SkinControl.SkinListView skinListView1;
- private System.Windows.Forms.ColumnHeader columnHeader1;
- }
- }
|