BlockUIContainer Construtores
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.
Inicializa uma nova instância da classe BlockUIContainer.
Sobrecargas
BlockUIContainer() |
Inicializa uma nova instância vazia da classe BlockUIContainer. |
BlockUIContainer(UIElement) |
Inicializa uma nova instância da classe BlockUIContainer, usando um objeto UIElement especificado como o conteúdo inicial do novo BlockUIContainer. |
BlockUIContainer()
Inicializa uma nova instância vazia da classe BlockUIContainer.
public:
BlockUIContainer();
public BlockUIContainer ();
Public Sub New ()
Aplica-se a
BlockUIContainer(UIElement)
Inicializa uma nova instância da classe BlockUIContainer, usando um objeto UIElement especificado como o conteúdo inicial do novo BlockUIContainer.
public:
BlockUIContainer(System::Windows::UIElement ^ uiElement);
public BlockUIContainer (System.Windows.UIElement uiElement);
new System.Windows.Documents.BlockUIContainer : System.Windows.UIElement -> System.Windows.Documents.BlockUIContainer
Public Sub New (uiElement As UIElement)
Parâmetros
- uiElement
- UIElement
Um objeto de UIElement que especifica o conteúdo inicial do novo BlockUIContainer.
Exemplos
O exemplo a seguir demonstra o uso desse construtor.
// A child UIElement element for the new BlockUIContainer element.
Button buttonx = new Button();
buttonx.Content = "Click me!";
// After this line executes, the new element "inlineUI"
// contains the specified Inline element, "runx".
BlockUIContainer blockUI = new BlockUIContainer(buttonx);
' A child UIElement element for the new BlockUIContainer element.
Dim buttonx3 As New Button()
buttonx3.Content = "Click me!"
' After this line executes, the new element "inlineUI"
' contains the specified Inline element, "runx".
Dim blockUI As New BlockUIContainer(buttonx3)