frmCaseFileCompare.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. namespace wispro.sp.winClient
  2. {
  3. partial class frmCaseFileCompare
  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. button1 = new System.Windows.Forms.Button();
  29. label1 = new System.Windows.Forms.Label();
  30. txtCaseNo = new System.Windows.Forms.TextBox();
  31. comboBox1 = new System.Windows.Forms.ComboBox();
  32. richTextBox1 = new System.Windows.Forms.RichTextBox();
  33. SuspendLayout();
  34. //
  35. // button1
  36. //
  37. button1.Location = new System.Drawing.Point(618, 27);
  38. button1.Name = "button1";
  39. button1.Size = new System.Drawing.Size(131, 40);
  40. button1.TabIndex = 0;
  41. button1.Text = "开始比较";
  42. button1.UseVisualStyleBackColor = true;
  43. button1.Click += button1_Click;
  44. //
  45. // label1
  46. //
  47. label1.AutoSize = true;
  48. label1.Location = new System.Drawing.Point(26, 33);
  49. label1.Name = "label1";
  50. label1.Size = new System.Drawing.Size(138, 28);
  51. label1.TabIndex = 1;
  52. label1.Text = "请输入案号:";
  53. label1.Click += label1_Click;
  54. //
  55. // txtCaseNo
  56. //
  57. txtCaseNo.Location = new System.Drawing.Point(179, 30);
  58. txtCaseNo.Name = "txtCaseNo";
  59. txtCaseNo.Size = new System.Drawing.Size(421, 34);
  60. txtCaseNo.TabIndex = 2;
  61. //
  62. // comboBox1
  63. //
  64. comboBox1.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
  65. comboBox1.FormattingEnabled = true;
  66. comboBox1.Items.AddRange(new object[] { "比较结果", "初稿与第一次返稿文档修订文字", "第一次返稿与定稿文档修订文字" });
  67. comboBox1.Location = new System.Drawing.Point(1028, 30);
  68. comboBox1.Name = "comboBox1";
  69. comboBox1.Size = new System.Drawing.Size(348, 36);
  70. comboBox1.TabIndex = 4;
  71. comboBox1.SelectedIndexChanged += comboBox1_SelectedIndexChanged;
  72. //
  73. // richTextBox1
  74. //
  75. richTextBox1.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right;
  76. richTextBox1.Location = new System.Drawing.Point(26, 93);
  77. richTextBox1.Name = "richTextBox1";
  78. richTextBox1.Size = new System.Drawing.Size(1350, 626);
  79. richTextBox1.TabIndex = 5;
  80. richTextBox1.Text = "";
  81. //
  82. // frmCaseFileCompare
  83. //
  84. AutoScaleDimensions = new System.Drawing.SizeF(13F, 28F);
  85. AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  86. ClientSize = new System.Drawing.Size(1408, 747);
  87. Controls.Add(richTextBox1);
  88. Controls.Add(comboBox1);
  89. Controls.Add(txtCaseNo);
  90. Controls.Add(label1);
  91. Controls.Add(button1);
  92. Name = "frmCaseFileCompare";
  93. Text = "专利案件初稿、返稿和定稿文件比较";
  94. WindowState = System.Windows.Forms.FormWindowState.Maximized;
  95. ResumeLayout(false);
  96. PerformLayout();
  97. }
  98. #endregion
  99. private System.Windows.Forms.Button button1;
  100. private System.Windows.Forms.Label label1;
  101. private System.Windows.Forms.TextBox txtCaseNo;
  102. private System.Windows.Forms.ComboBox comboBox1;
  103. private System.Windows.Forms.RichTextBox richTextBox1;
  104. }
  105. }