我正在开发使用 以及更多控件的 Windows 窗体应用RichtextBox
程序Menustrip
。
我做了一些工作,但无法让它工作。当我的鼠标光标在 RichTextBox 中移动时,我想自动更改位置,就像在简单的记事本上一样。
我的位编码是....
我想要它,所以当我的鼠标光标移动时,它会改变状态栏上的动态位置
private void sizeToolStripMenuItem_Click(object sender, EventArgs e)
{
int line = richTextBox1.GetLineFromCharIndex(richTextBox1.SelectionStart);
int column = richTextBox1.SelectionStart - richTextBox1.GetFirstCharIndexFromLine(line);
toolStripStatusLabel5.Text ="Line"+" "+ line.ToString();
toolStripStatusLabel6.Text = " Column" + " " + line.ToString();
toolStripStatusLabel3.Text= Cursor.Position.ToString(); // where is my mouse cursor at this Time like that x and y cordinate 330,334
}