Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 919 Bytes

usercontrol_content.md

File metadata and controls

37 lines (26 loc) · 919 Bytes
-api-id -api-type
P:Windows.UI.Xaml.Controls.UserControl.Content
winrt property

Windows.UI.Xaml.Controls.UserControl.Content

-description

Gets or sets the content that is contained within a user control.

-xaml-syntax

<UserControl ...>
  singleContentElement
</UserControl>
-or-
<UserControl .../>

-xaml-values

singleContentElement
singleContentElementExactly one object element for a class that derives from UIElement. This is almost always an object that can take child elements (such as a Panel) so that multiple elements can be added to content. XAML processing of a UserControl has a special behavior that sets this content to the otherwise protected Content property.
## -property-value The content of the user control.

-remarks

-examples

-see-also