如何从指定字段中获取 PropertyGrid 的 TextBox?我需要这个 TextBox 将指针设置为文本的结尾。
var num = txtBox.GetCharIndexFromPosition(Cursor.Position);
txtBox.SelectionStart = num + 1;
txtBox.SelectionLength = 0;
那么如何从 PropertyGrid 获取这个 TextBox 呢?此外,PropertyGrid 中的属性是只读的。
如何从指定字段中获取 PropertyGrid 的 TextBox?我需要这个 TextBox 将指针设置为文本的结尾。
var num = txtBox.GetCharIndexFromPosition(Cursor.Position);
txtBox.SelectionStart = num + 1;
txtBox.SelectionLength = 0;
那么如何从 PropertyGrid 获取这个 TextBox 呢?此外,PropertyGrid 中的属性是只读的。
如果您想要的是将光标定位在文本框中写入的最后一个字符之后,您可以依赖以下代码(由 的触发TextChanged Event
)TextBox
:
private void txtBox_TextChanged(object sender, EventArgs e)
{
int newX = txtBox.Location.X + TextRenderer.MeasureText(txtBox.Text, txtBox.Font).Width;
int newY = txtBox.Bottom - txtBox.Height / 2;
if (newX > txtBox.Location.X + txtBox.Width)
{
newX = txtBox.Location.X + txtBox.Width;
}
Cursor.Position = this.PointToScreen(new Point(newX, newY));
}
请记住,它的 Y 位置始终在中间。
----- 金王评论后更新
就问题中的代码而言TextBox
,我将答案集中在TextBox
. 尽管如此,KingKing 是正确的,PropertyGrid
必须考虑到这一点。在这些行下面,我修改了您可以在MSDN中找到的代码PropertyGrid
:
private void Form1_Load(object sender, EventArgs e)
{
PropertyGrid propertyGrid1 = new PropertyGrid();
propertyGrid1.CommandsVisibleIfAvailable = true;
propertyGrid1.Location = new Point(10, 20);
propertyGrid1.Size = new System.Drawing.Size(400, 300);
propertyGrid1.TabIndex = 1;
propertyGrid1.Text = "Property Grid";
this.Controls.Add(propertyGrid1);
propertyGrid1.SelectedObject = txtBox;
}
txtBox
添加到之后propertyGrid1
,它的位置被更新,因此可以毫无问题地使用原始代码。
综上所述,思路不是在TextBox
里面寻找PropertyGrid
,而是直接访问TextBox
控件(运行时添加到的PropertyGrid
)。