如何从指定字段获取PropertyGrid的TextBox? 我需要这个TextBox将Pointer设置为文本的结尾。
var num = txtBox.GetCharIndexFromPosition(Cursor.Position);
txtBox.SelectionStart = num + 1;
txtBox.SelectionLength = 0;
那么如何从PropertyGrid获取此TextBox? 此外,PropertyGrid中的属性是只读的。
答案 0 :(得分:1)
如果您想要的是光标位于文本框中写入的最后一个字符之后,您可以依赖以下代码(由TextChanged Event
的{{1}}触发):
TextBox
请记住,它的Y位置始终位于中间位置。
-----金刚评论后更新
至于问题中的代码被引用到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));
}
,我将答案集中在TextBox
上。尽管如此,KingKing是对的,必须考虑TextBox
。在这些行下面,我调整了您在PropertyGrid
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
)