在Richtextbox控件中如何获得光标的所在的行数和列数

wanbaocheng 2002-06-08 05:41:04
哪位大侠帮忙,一定给分!
...全文
331 7 打赏 收藏 转发到动态 举报
写回复
用AI写文章
7 条回复
切换为时间正序
请发表友善的回复…
发表回复
wanbaocheng 2002-06-12
  • 打赏
  • 举报
回复
非常感谢CForce,另贴再接100分。
CForce 2002-06-10
  • 打赏
  • 举报
回复
//如果有人说win32api没用,我问他这道题不用api又怎么解决?
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Runtime.InteropServices;

namespace csTest
{
public class Form1 : System.Windows.Forms.Form
{

[DllImport("user32")]
public static extern bool GetCaretPos(ref System.Drawing.Point lpPoint);

private System.Windows.Forms.RichTextBox richTextBox1;
private System.Windows.Forms.Button buttonGetResult;
private System.ComponentModel.Container components = null;

public Form1()
{
InitializeComponent();
}
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

#region Windows Form Designer generated code

private void InitializeComponent()
{
this.richTextBox1 = new System.Windows.Forms.RichTextBox();
this.buttonGetResult = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// richTextBox1
//
this.richTextBox1.Location = new System.Drawing.Point(16, 24);
this.richTextBox1.Name = "richTextBox1";
this.richTextBox1.Size = new System.Drawing.Size(528, 232);
this.richTextBox1.TabIndex = 0;
this.richTextBox1.Text = "";
//
// buttonGetResult
//
this.buttonGetResult.Location = new System.Drawing.Point(456, 272);
this.buttonGetResult.Name = "buttonGetResult";
this.buttonGetResult.TabIndex = 1;
this.buttonGetResult.Text = "Clike Me!";
this.buttonGetResult.Click += new System.EventHandler(this.button1_Click);
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(560, 301);
this.Controls.AddRange(new System.Windows.Forms.Control[] {
this.buttonGetResult,
this.richTextBox1});
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);

}
#endregion
[STAThread]
static void Main()
{
Application.Run(new Form1());
}

private int X=0;
private int Y=0;
private void button1_Click(object sender, System.EventArgs e)
{
Point P=new Point(0);
GetCaretPos(ref P);
int Pos=this.richTextBox1.GetCharIndexFromPosition(P);
this.Y=this.richTextBox1.GetLineFromCharIndex(Pos);

if (this.Y>0)
{
int offset=1;
while(this.richTextBox1.Text[Pos-offset]!='\n')
offset++;
this.X=offset;
this.Y++;
}
else
{
this.X=Pos+1;
this.Y=1;
}

MessageBox.Show("当前位置: 第"+this.Y.ToString()+"行 "+"第"+this.X.ToString()+"列");
}
}
}
wanbaocheng 2002-06-10
  • 打赏
  • 举报
回复
To coollzh(梁子) :
您好!
我说的光标不是鼠标的光标,而是指编辑文本时闪动在字与字之间的光标。麻烦在思考一下,我一定给分,谢谢!
wanbaocheng 2002-06-09
  • 打赏
  • 举报
回复
若解决了,我再另加100分,谢谢!
lonk 2002-06-09
  • 打赏
  • 举报
回复
so hard!
coollzh 2002-06-09
  • 打赏
  • 举报
回复
先判断richTextBox的坐标位置,在判断鼠标在屏幕中的位置,换算一下就可以了,具体的看看.net framework sdk
CForce 2002-06-08
  • 打赏
  • 举报
回复
这不好解决,100分还不够动力,嘻嘻

110,533

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • Web++
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧