38

我正在编写一个自定义TextBox,在获得焦点后会更改其边框样式。

由于添加边框会导致控件与相邻的控件重叠,因此我暂时将文本框置于对话框的前面(使用textBox.BringToFront())。

但是,一旦编辑完成并且失去焦点,我想将控件发送回其在 Z 顺序中的原始位置。

这可能吗(最好以简单的方式!)

4

3 回答 3

46

调用父集合的GetChildIndex和方法。SetChildIndexControls

于 2010-07-09T14:03:08.527 回答
27

没有像 VB 中那样的 Z 顺序,但您可以使用GetChildIndexSetChildIndex方法手动获取和设置它们的索引。

这里有一个如何使用它的例子。不过,您可能需要记录每个控件索引,以便在完成后将其设置回它。

像这样的东西可能是你所追求的:

// 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);
于 2010-07-09T14:03:43.690 回答
1

当与 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);
        }
    }
于 2018-04-04T17:01:35.133 回答