Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
 Content Property
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
ContentControl..::.Content Property

Gets or sets the content of a ContentControl. This is a dependency property.

Namespace:  System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/xaml/presentation
Visual Basic (Declaration)
<BindableAttribute(True)> _
Public Property Content As Object
Visual Basic (Usage)
Dim instance As ContentControl
Dim value As Object

value = instance.Content

instance.Content = value
C#
[BindableAttribute(true)]
public Object Content { get; set; }
Visual C++
[BindableAttribute(true)]
public:
virtual property Object^ Content {
    Object^ get () sealed;
    void set (Object^ value) sealed;
}
JScript
public final function get Content () : Object
public final function set Content (value : Object)
XAML Content Element Usage
<object> content</object>
XAML Attribute Usage
<object Content="content"/>
XAML Values
Content

Text or a single object.

Property Value

Type: System..::.Object
An object that contains the control's content. The default value is nullNothingnullptra null reference (Nothing in Visual Basic).

Identifier field

ContentProperty

Metadata properties set to true

None

Content Model: This property is used to set the content of controls that inherit from ContentControl and can be any object. For more information, see Controls Content Model Overview.

The following examples show how to add content to a Button using the Content property that button inherits.

C#
void OnClick5(object sender, RoutedEventArgs e)
{
    btn6.FontSize = 16;
    btn6.Content = "This is my favorite photo.";
    btn6.Background = Brushes.Red;
}

Visual Basic
Private Sub OnClick5(ByVal sender As Object, ByVal e As RoutedEventArgs)
    btn6.FontSize = 16
    btn6.Content = "This is my favorite photo."
    btn6.Background = Brushes.Red
End Sub

Windows Vista

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker