InlineUIContainer Konstruktor
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Menginisialisasi instans baru dari kelas InlineUIContainer.
Overload
| Nama | Deskripsi |
|---|---|
| InlineUIContainer() |
Menginisialisasi instans baru yang kosong dari InlineUIContainer kelas. |
| InlineUIContainer(UIElement) |
Menginisialisasi instans baru kelas InlineUIContainer, mengambil objek UIElement tertentu sebagai konten awal InlineUIContainerbaru. |
| InlineUIContainer(UIElement, TextPointer) |
Menginisialisasi instans baru kelas InlineUIContainer, mengambil objek UIElement tertentu sebagai konten awal InlineUIContainerbaru , dan TextPointer menentukan posisi penyisipan untuk elemen InlineUIContainer baru. |
InlineUIContainer()
Menginisialisasi instans baru yang kosong dari InlineUIContainer kelas.
public:
InlineUIContainer();
public InlineUIContainer();
Public Sub New ()
Berlaku untuk
InlineUIContainer(UIElement)
Menginisialisasi instans baru kelas InlineUIContainer, mengambil objek UIElement tertentu sebagai konten awal InlineUIContainerbaru.
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)
Parameter
- childUIElement
- UIElement
Objek UIElement yang menentukan konten awal dari yang baru InlineUIContainer.
Contoh
Contoh berikut menunjukkan penggunaan konstruktor ini.
// 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)
Berlaku untuk
InlineUIContainer(UIElement, TextPointer)
Menginisialisasi instans baru kelas InlineUIContainer, mengambil objek UIElement tertentu sebagai konten awal InlineUIContainerbaru , dan TextPointer menentukan posisi penyisipan untuk elemen InlineUIContainer baru.
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)
Parameter
- childUIElement
- UIElement
Objek UIElement yang menentukan konten awal dari yang baru InlineUIContainer. Parameter ini mungkin null, dalam hal ini tidak ada UIElement yang dimasukkan.
- insertionPosition
- TextPointer
TextPointer Menentukan posisi penyisipan untuk menyisipkan InlineUIContainer elemen setelah dibuat, atau null tanpa penyisipan otomatis.
Contoh
Contoh berikut menunjukkan penggunaan konstruktor ini.
// 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)