BlockUIContainer 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 BlockUIContainer 类的新实例。
重载
BlockUIContainer() |
初始化 BlockUIContainer 类的新的空实例。 |
BlockUIContainer(UIElement) |
初始化 BlockUIContainer 类的一个新实例,将指定的 UIElement 对象作为新的 BlockUIContainer 的初始内容。 |
BlockUIContainer()
初始化 BlockUIContainer 类的新的空实例。
public:
BlockUIContainer();
public BlockUIContainer ();
Public Sub New ()
适用于
BlockUIContainer(UIElement)
初始化 BlockUIContainer 类的一个新实例,将指定的 UIElement 对象作为新的 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)
参数
- uiElement
- UIElement
UIElement 对象,它指定新的 BlockUIContainer 的初始内容。
示例
以下示例演示此构造函数的用法。
// 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)