InlineUIContainer Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Inicjuje nowe wystąpienie klasy InlineUIContainer.
Przeciążenia
InlineUIContainer() |
Inicjuje nowe, puste wystąpienie InlineUIContainer klasy. |
InlineUIContainer(UIElement) |
Inicjuje InlineUIContainer nowe wystąpienie klasy, przyjmując określony UIElement obiekt jako początkową zawartość nowego InlineUIContainerobiektu . |
InlineUIContainer(UIElement, TextPointer) |
Inicjuje nowe wystąpienie InlineUIContainer klasy, przyjmując określony UIElement obiekt jako początkową zawartość nowego InlineUIContainerelementu i TextPointer określając pozycję wstawiania dla nowego InlineUIContainer elementu. |
InlineUIContainer()
Inicjuje nowe, puste wystąpienie InlineUIContainer klasy.
public:
InlineUIContainer();
public InlineUIContainer ();
Public Sub New ()
Dotyczy
InlineUIContainer(UIElement)
Inicjuje InlineUIContainer nowe wystąpienie klasy, przyjmując określony UIElement obiekt jako początkową zawartość nowego InlineUIContainerobiektu .
public:
InlineUIContainer(System::Windows::UIElement ^ childUIElement);
public InlineUIContainer (System.Windows.UIElement childUIElement);
new System.Windows.Documents.InlineUIContainer : System.Windows.UIElement -> System.Windows.Documents.InlineUIContainer
Public Sub New (childUIElement As UIElement)
Parametry
- childUIElement
- UIElement
Obiekt UIElement określający początkową zawartość nowego InlineUIContainerobiektu .
Przykłady
W poniższym przykładzie pokazano użycie tego konstruktora.
// A child UIElement element for the new InlineUIContainer element.
Button buttonx = new Button();
buttonx.Content = "Click me!";
// After this line executes, the new element "inlineUI"
// contains the specified Inline element, "runx".
InlineUIContainer inlineUI = new InlineUIContainer(buttonx);
' A child UIElement element for the new InlineUIContainer element.
Dim buttonx1 As New Button()
buttonx1.Content = "Click me!"
' After this line executes, the new element "inlineUI"
' contains the specified Inline element, "runx".
Dim inlineUI As New InlineUIContainer(buttonx1)
Dotyczy
InlineUIContainer(UIElement, TextPointer)
Inicjuje nowe wystąpienie InlineUIContainer klasy, przyjmując określony UIElement obiekt jako początkową zawartość nowego InlineUIContainerelementu i TextPointer określając pozycję wstawiania dla nowego InlineUIContainer elementu.
public:
InlineUIContainer(System::Windows::UIElement ^ childUIElement, System::Windows::Documents::TextPointer ^ insertionPosition);
public InlineUIContainer (System.Windows.UIElement childUIElement, System.Windows.Documents.TextPointer insertionPosition);
new System.Windows.Documents.InlineUIContainer : System.Windows.UIElement * System.Windows.Documents.TextPointer -> System.Windows.Documents.InlineUIContainer
Public Sub New (childUIElement As UIElement, insertionPosition As TextPointer)
Parametry
- childUIElement
- UIElement
UIElement Obiekt określający początkową zawartość nowego InlineUIContainerobiektu . Ten parametr może mieć null
wartość , w takim przypadku nie UIElement jest wstawiany.
- insertionPosition
- TextPointer
Określenie TextPointer położenia wstawiania, w którym ma być wstawiony element po jego utworzeniu InlineUIContainer lub null
bez automatycznego wstawiania.
Przykłady
W poniższym przykładzie pokazano użycie tego konstruktora.
// A child UIElement element for the new InlineUIContainer element.
Button buttonx = new Button();
buttonx.Content = "Click me!";
// An empty paragraph will serve as the container for the new InlineUIContainer element.
Paragraph parx = new Paragraph();
// After this line executes, the new element "inlineUI"
// contains the specified UIElement element, "buttonx". Also, "inlineUI" is
// inserted at the point indicated by the insertionPosition parameter,
// which in this case indicates the content start position in the Paragraph
// element "parx".
InlineUIContainer inlineUI = new InlineUIContainer(buttonx, parx.ContentStart);
' A child UIElement element for the new InlineUIContainer element.
Dim buttonx2 As New Button()
buttonx2.Content = "Click me!"
' An empty paragraph will serve as the container for the new InlineUIContainer element.
Dim parx As New Paragraph()
' After this line executes, the new element "inlineUI"
' contains the specified UIElement element, "buttonx". Also, "inlineUI" is
' inserted at the point indicated by the insertionPosition parameter,
' which in this case indicates the content start position in the Paragraph
' element "parx".
Dim inlineUI2 As New InlineUIContainer(buttonx2, parx.ContentStart)