ModuleListPage.ListViewContainer Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene el contenedor de vista de lista.
protected:
property System::Windows::Forms::Control ^ ListViewContainer { System::Windows::Forms::Control ^ get(); };
protected System.Windows.Forms.Control ListViewContainer { get; }
member this.ListViewContainer : System.Windows.Forms.Control
Protected ReadOnly Property ListViewContainer As Control
Valor de propiedad
Objeto Control que contiene la vista de lista.
Ejemplos
En el ejemplo siguiente se llama al System.Windows.Forms.Control.SuspendLayout método , se agrega una etiqueta y un cuadro combinado a los controles y, a continuación, se llama al System.Windows.Forms.Control.ResumeLayout método .
protected override void InitializeListPage() {
TableLayoutPanel tblLayPanl = getConfiguredTPL();
try {
ListViewContainer.SuspendLayout();
tblLayPanl.SuspendLayout();
// get a new label with all properties set
tblLayPanl.Controls.Add(getMyLabel());
// get a new ComboBox with all properties set
tblLayPanl.Controls.Add(getMyComboBx());
} finally {
ListViewContainer.ResumeLayout();
tblLayPanl.ResumeLayout();
}
_keyHeader = getColHdr("key ");
ListView.Columns.AddRange(new ColumnHeader[] {
_keyHeader,
getColHdr("Value "),
getColHdr("Local "),});
ListView.MultiSelect = false;
ListView.ShowGroups = true;
ListView.SizeChanged += new
EventHandler(ListView_SizeChanged);
}