转到.cs
上传用户:hueiseng
上传日期:2022-07-26
资源大小:156k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual 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 笔记本
  9. {
  10.     public partial class 转到 : Form
  11.     {
  12.         public 转到()
  13.         {
  14.             InitializeComponent();
  15.         }
  16.         private void button1_Click(object sender, EventArgs e)
  17.         {
  18.             Form1 f1 = (Form1)this.Owner;
  19.           
  20.             int a=Int32.Parse(textBox1.Text );
  21.             if (a == 0) a= 1;
  22.            
  23.             a = f1.richTextBox1.GetFirstCharIndexFromLine(a -1);
  24.          
  25.             if (a >= 0)
  26.             {
  27.                
  28.                     f1.richTextBox1.Select(a, 0);
  29.                 
  30.             }
  31.             else
  32.             {
  33.                 MessageBox.Show("超出查找范围");
  34.              
  35.             }
  36.           
  37.             Close();
  38.         }
  39.         }
  40.            
  41.     }