Cómo: Agregar un control a un ToolStripContentPanel
Actualización: noviembre 2007
Puede agregar uno o más controles a un panel ToolStripContentPanel mediante programación.
Ejemplo
En el ejemplo de código siguiente se muestra cómo agregar un control RichTextBox a un panel ToolStripContentPanel.
Imports System
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Text
Imports System.Windows.Forms
Public Class Form1
Inherits Form
Private tsc As ToolStripContainer
Private rtb As RichTextBox
Public Sub New()
InitializeComponent()
End Sub
<STAThread()> _
Shared Sub Main()
Application.EnableVisualStyles()
Application.Run(New Form1())
End Sub
Private Sub InitializeComponent()
Me.tsc = New System.Windows.Forms.ToolStripContainer()
Me.rtb = New System.Windows.Forms.RichTextBox()
Me.tsc.ContentPanel.Controls.Add(Me.rtb)
Me.Controls.Add(tsc)
End Sub
End Class
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
public class Form1 : Form
{
private ToolStripContainer tsc;
private RichTextBox rtb;
public Form1()
{
InitializeComponent();
}
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.Run(new Form1());
}
private void InitializeComponent()
{
this.tsc = new System.Windows.Forms.ToolStripContainer();
this.rtb = new System.Windows.Forms.RichTextBox();
this.tsc.ContentPanel.Controls.Add(this.rtb);
this.Controls.Add(this.tsc);
}
}
Compilar el código
Este ejemplo de código requiere:
- Referencias a los ensamblados System, System.Data y System.Windows.Forms.
Para obtener información sobre la generación de este ejemplo desde la línea de comandos de Visual Basic o Visual C#, vea Generar desde la línea de comandos (Visual Basic) o Generar la línea de comandos con csc.exe. También puede generar este ejemplo en Visual Studio pegando el código en un proyecto nuevo.