Aracılığıyla paylaş


BlockUIContainer Oluşturucular

Tanım

BlockUIContainer sınıfının yeni bir örneğini başlatır.

Aşırı Yüklemeler

BlockUIContainer()

sınıfının yeni, boş bir örneğini BlockUIContainer başlatır.

BlockUIContainer(UIElement)

Sınıfının yeni bir örneğini BlockUIContainer başlatır ve belirtilen UIElement nesneyi yeni BlockUIContaineröğesinin ilk içeriği olarak alır.

BlockUIContainer()

sınıfının yeni, boş bir örneğini BlockUIContainer başlatır.

public:
 BlockUIContainer();
public BlockUIContainer ();
Public Sub New ()

Şunlara uygulanır

BlockUIContainer(UIElement)

Sınıfının yeni bir örneğini BlockUIContainer başlatır ve belirtilen UIElement nesneyi yeni BlockUIContaineröğesinin ilk içeriği olarak alır.

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)

Parametreler

uiElement
UIElement

UIElement Yeni BlockUIContaineröğesinin ilk içeriğini belirten nesne.

Örnekler

Aşağıdaki örnekte bu oluşturucunun kullanımı gösterilmektedir.

// 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)

Şunlara uygulanır