我正在编写一个自定义TextBox
,在获得焦点时会更改其边框样式。
由于添加边框会导致控件与相邻控件重叠,因此我暂时将文本框置于对话框的前面(使用textBox.BringToFront()
)。
然而,一旦编辑完成并且焦点丢失,我想将控件发送回Z顺序中的原始位置。
这是否可行(最好以简单的方式!)
答案 0 :(得分:39)
调用父级Controls
集合的GetChildIndex
和SetChildIndex
方法。
答案 1 :(得分:24)
VB中没有Z顺序,但您可以使用GetChildIndex
和SetChildIndex
方法手动获取和设置索引。
Here有一个如何使用它的例子。您可能需要保留每个控件索引的记录,因此您可以在完成时将其设置回它。
这样的事情可能就是你所追求的:
// Get the controls index
int zIndex = parentControl.Controls.GetChildIndex(textBox);
// Bring it to the front
textBox.BringToFront();
// Do something...
// Then send it back again
parentControl.Controls.SetChildIndex(textBox, zIndex);
答案 2 :(得分:0)
当与FlowLayoutPanel一起使用时,这将向上或向下移动控件
/// <summary>
/// When used with the FlowLayoutPanel this will move a control up or down
/// </summary>
/// <param name="sender"></param>
/// <param name="UpDown"></param>
private void C_On_Move(object sender, int UpDown)
{
//If UpDown = 1 Move UP, If UpDown = 0 Move DOWN
Control c = (Control)sender;
// Get the controls index
int zIndex = _flowLayoutPanel1.Controls.GetChildIndex(c);
if (UpDown==1 && zIndex > 0)
{
// Move up one
_flowLayoutPanel1.Controls.SetChildIndex(c, zIndex - 1);
}
if (UpDown == 0 && zIndex < _flowLayoutPanel1.Controls.Count-1)
{
// Move down one
_flowLayoutPanel1.Controls.SetChildIndex(c, zIndex + 1);
}
}