BlockUIContainer Konstruktory
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Inicializuje novou instanci BlockUIContainer třídy.
Přetížení
BlockUIContainer() |
Inicializuje novou prázdnou BlockUIContainer instanci třídy. |
BlockUIContainer(UIElement) |
Inicializuje novou instanci BlockUIContainer třídy, vezme zadaný UIElement objekt jako počáteční obsah nového BlockUIContainer. |
BlockUIContainer()
Inicializuje novou prázdnou BlockUIContainer instanci třídy.
public:
BlockUIContainer();
public BlockUIContainer ();
Public Sub New ()
Platí pro
BlockUIContainer(UIElement)
Inicializuje novou instanci BlockUIContainer třídy, vezme zadaný UIElement objekt jako počáteční obsah nového 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)
Parametry
- uiElement
- UIElement
Objekt UIElement určující počáteční obsah nového BlockUIContainer.
Příklady
Následující příklad ukazuje použití tohoto konstruktoru.
// 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)