TableLayoutPanel.SetColumn(Control, Int32) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Define a posição de coluna do controle filho especificado.
public:
void SetColumn(System::Windows::Forms::Control ^ control, int column);
public void SetColumn (System.Windows.Forms.Control control, int column);
member this.SetColumn : System.Windows.Forms.Control * int -> unit
Public Sub SetColumn (control As Control, column As Integer)
Parâmetros
- control
- Control
O controle a ser movido para outra coluna.
- column
- Int32
A coluna para a qual o control
será movido.
Exemplos
O exemplo de código a seguir usa o SetColumn método para trocar dois controles contidos em um TableLayoutPanel controle. O exemplo pressupõe um TableLayoutPanel controle com pelo menos duas linhas.
private void swapControlsBtn_Click(
System.Object sender,
System.EventArgs e)
{
Control c1 = this.TableLayoutPanel1.GetControlFromPosition(0, 0);
Control c2 = this.TableLayoutPanel1.GetControlFromPosition(0, 1);
if( c1 != null && c2 != null )
{
this.TableLayoutPanel1.SetColumn(c2, 0);
this.TableLayoutPanel1.SetColumn(c1, 1);
}
}
Private Sub swapControlsBtn_Click( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles swapControlsBtn.Click
Dim c1 As Control = Me.TableLayoutPanel1.GetControlFromPosition(0, 0)
Dim c2 As Control = Me.TableLayoutPanel1.GetControlFromPosition(0, 1)
If c1 IsNot Nothing And c2 IsNot Nothing Then
Me.TableLayoutPanel1.SetColumn(c2, 0)
Me.TableLayoutPanel1.SetColumn(c1, 1)
End If
End Sub
Comentários
O SetColumn método move o controle para outra coluna no TableLayoutPanel. As colunas e linhas têm índices baseados em zero. Definir a posição da coluna como -1 especifica que o controle fluirá para a primeira célula vazia.
Esse método reaplica o layout da tabela para todos os controles no TableLayoutPanel.
Esse método é chamado pela Column
propriedade, que o painel adiciona aos controles filho em tempo de design.