本文介绍了文字框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我该怎么办
获取TextBox.Text的y位置
我的意思是:
我有一个带有滚动条的文本框
写入邮件的地方
//在文本框中
你好,你好吗?
怎么了?
bla bla bla ...
//现在在这个位置,我想附加一个按钮控件
//但我无法确定如何获得在
中设置控件的位置//我正在寻找某种类型的线索引类型属性
how would i go about
getting the y position of a TextBox.Text
what i mean is as follows :
i have a textbox with scroller
messages where writen to it
// inside the textbox
hello how are u?
whats up?
bla bla bla...
// now in this position i would like to append a button control
// but i cant fingure out how to get the position to set the control in
// im looking for somthing sort of a line index type property
rtb_msg.Controls.Add(x_panel);
x_panel.Location = new Point(rtb_send.Width / 2 -x_panel.Width / 2,??? <big>Height</big> ???);
推荐答案
这篇关于文字框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!