C# Class OKHOSTING.UI.Net4.WPF.Controls.Layout.Grid

/// A container for storing objects grid and has design properties. Un contenedor de cuadricula para almacenar objetos y tiene propiedades de diseño.

Inheritance: System.Windows.Controls.Grid, IGrid
Afficher le fichier Open project: okhosting/OKHOSTING.UI

Private Properties

Свойство Type Description
IGrid IControl
IGrid double
IGrid int

Méthodes publiques

Méthode Description
Grid ( ) : System

Inicialize a new intance of the Grid class. Inicializa una nueva instancia de la clase Grid.

IDisposable ( ) : void

The identifier dispose. El identificador dispose.

IGrid ( int columnSpan, IControl content ) : void

Sets the column span. Establece el espacio que abarca la columna.

IGrid ( int column, double width ) : void

Sets the width of each column of the grid. Establece el ancho de cada columna del grid.

IGrid ( int row, int column, IControl content ) : void

Sets the content of the grid. Establece el contenido del grid.

Méthodes protégées

Méthode Description
ArrangeOverride ( Size arrangeSize ) : Size

It is used to set the margins and paddings of the Grid. Se utilizara para establecer los margenes y paddings del Grid.

Private Methods

Méthode Description
IGrid ( int row, int column ) : IControl

Gets the number of rows and columns of the grid Obtiene el numero de filas y columnas del grid

IGrid ( int column ) : double

Gets the width of the specified column. Obtiene el ancho de la columna especificada.

IGrid ( IControl content ) : int

Gets the column span. Obtiene el espacio que abarca la columna.

Method Details

ArrangeOverride() protected méthode

It is used to set the margins and paddings of the Grid. Se utilizara para establecer los margenes y paddings del Grid.

protected ArrangeOverride ( Size arrangeSize ) : Size
arrangeSize System.Windows.Size Arrange size /// Fija el tamaño ///
Résultat System.Windows.Size

Grid() public méthode

Inicialize a new intance of the Grid class. Inicializa una nueva instancia de la clase Grid.

public Grid ( ) : System
Résultat System

IDisposable() public méthode

The identifier dispose. El identificador dispose.

public IDisposable ( ) : void
Résultat void

IGrid() public méthode

Sets the column span. Establece el espacio que abarca la columna.

public IGrid ( int columnSpan, IControl content ) : void
columnSpan int Column span. /// Espacio que abarca la columna ///
content IControl Content. /// El contenido. ///
Résultat void

IGrid() public méthode

Sets the width of each column of the grid. Establece el ancho de cada columna del grid.

public IGrid ( int column, double width ) : void
column int Column. /// La column. ///
width double Width. /// El ancho. ///
Résultat void

IGrid() public méthode

Sets the content of the grid. Establece el contenido del grid.

public IGrid ( int row, int column, IControl content ) : void
row int Row. /// Las filas. ///
column int Column. /// Las columnas ///
content IControl Content. /// El contenido del grid. ///
Résultat void