123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- namespace wispro.sp.winClient
- {
- partial class frmCaseFileCompare
- {
- /// <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()
- {
- button1 = new System.Windows.Forms.Button();
- label1 = new System.Windows.Forms.Label();
- txtCaseNo = new System.Windows.Forms.TextBox();
- comboBox1 = new System.Windows.Forms.ComboBox();
- richTextBox1 = new System.Windows.Forms.RichTextBox();
- SuspendLayout();
- //
- // button1
- //
- button1.Location = new System.Drawing.Point(618, 27);
- button1.Name = "button1";
- button1.Size = new System.Drawing.Size(131, 40);
- button1.TabIndex = 0;
- button1.Text = "开始比较";
- button1.UseVisualStyleBackColor = true;
- button1.Click += button1_Click;
- //
- // label1
- //
- label1.AutoSize = true;
- label1.Location = new System.Drawing.Point(26, 33);
- label1.Name = "label1";
- label1.Size = new System.Drawing.Size(138, 28);
- label1.TabIndex = 1;
- label1.Text = "请输入案号:";
- label1.Click += label1_Click;
- //
- // txtCaseNo
- //
- txtCaseNo.Location = new System.Drawing.Point(179, 30);
- txtCaseNo.Name = "txtCaseNo";
- txtCaseNo.Size = new System.Drawing.Size(421, 34);
- txtCaseNo.TabIndex = 2;
- //
- // comboBox1
- //
- comboBox1.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
- comboBox1.FormattingEnabled = true;
- comboBox1.Items.AddRange(new object[] { "比较结果", "初稿与第一次返稿文档修订文字", "第一次返稿与定稿文档修订文字" });
- comboBox1.Location = new System.Drawing.Point(1028, 30);
- comboBox1.Name = "comboBox1";
- comboBox1.Size = new System.Drawing.Size(348, 36);
- comboBox1.TabIndex = 4;
- comboBox1.SelectedIndexChanged += comboBox1_SelectedIndexChanged;
- //
- // richTextBox1
- //
- richTextBox1.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right;
- richTextBox1.Location = new System.Drawing.Point(26, 93);
- richTextBox1.Name = "richTextBox1";
- richTextBox1.Size = new System.Drawing.Size(1350, 626);
- richTextBox1.TabIndex = 5;
- richTextBox1.Text = "";
- //
- // frmCaseFileCompare
- //
- AutoScaleDimensions = new System.Drawing.SizeF(13F, 28F);
- AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- ClientSize = new System.Drawing.Size(1408, 747);
- Controls.Add(richTextBox1);
- Controls.Add(comboBox1);
- Controls.Add(txtCaseNo);
- Controls.Add(label1);
- Controls.Add(button1);
- Name = "frmCaseFileCompare";
- Text = "专利案件初稿、返稿和定稿文件比较";
- WindowState = System.Windows.Forms.FormWindowState.Maximized;
- ResumeLayout(false);
- PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox txtCaseNo;
- private System.Windows.Forms.ComboBox comboBox1;
- private System.Windows.Forms.RichTextBox richTextBox1;
- }
- }
|