Form2.cs
上传用户:xzl658
上传日期:2022-04-13
资源大小:1766k
文件大小:1k
源码类别:

浏览器

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace MyIE
  9. {
  10.     public partial class Form2 : Form
  11.     {
  12.         public Form2()
  13.         {
  14.             InitializeComponent();
  15.         }
  16.         public void xianshi(string doc)
  17.         {
  18.             this.richTextBox1.Text = doc;
  19.         }
  20.         private void Form2_Load(object sender, EventArgs e)
  21.         {
  22.         }
  23.        
  24.     }
  25. }