Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 4
System.Windows
Setter Class
Setter Properties
 Property Property
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2010/.NET Framework 4

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

Gets or sets the property to which the Value will be applied.

Namespace:  System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
Visual Basic
<LocalizabilityAttribute(LocalizationCategory.None, Modifiability := Modifiability.Unmodifiable,  _
    Readability := Readability.Unreadable)> _
<AmbientAttribute> _
Public Property Property As DependencyProperty
    Get
    Set
C#
[LocalizabilityAttribute(LocalizationCategory.None, Modifiability = Modifiability.Unmodifiable, 
    Readability = Readability.Unreadable)]
[AmbientAttribute]
public DependencyProperty Property { get; set; }
Visual C++
[LocalizabilityAttribute(LocalizationCategory::None, Modifiability = Modifiability::Unmodifiable, 
    Readability = Readability::Unreadable)]
[AmbientAttribute]
public:
property DependencyProperty^ Property {
    DependencyProperty^ get ();
    void set (DependencyProperty^ value);
}
F#
[<LocalizabilityAttribute(LocalizationCategory.None, Modifiability = Modifiability.Unmodifiable, 
    Readability = Readability.Unreadable)>]
[<AmbientAttribute>]
member Property : DependencyProperty with get, set
XAML Attribute Usage
<object Property="DependencyProperty" .../>

Property Value

Type: System.Windows..::.DependencyProperty
A DependencyProperty to which the Value will be applied. The default value is null.
ExceptionCondition
ArgumentNullException

The Property property cannot be nullNothingnullptra null reference (Nothing in Visual Basic).

ArgumentException

The specified Property property cannot be read-only.

InvalidOperationException

If the specified Value is not valid for the type of the specified Property.

Note that you must specify both the Property and Value properties on a Setter or an exception will be thrown.

The following example defines a style that will be applied to every TextBlock element.

XAML
<Style TargetType="{x:Type TextBlock}">
  <Setter Property="FontFamily" Value="Segoe Black" />
  <Setter Property="HorizontalAlignment" Value="Center" />
  <Setter Property="FontSize" Value="12pt" />
  <Setter Property="Foreground" Value="#777777" />
</Style>

The following example shows a style declaration that will affect the Background property of a Control. Note that property name in this example is qualified with the name of the class (Control) because the Style does not specify a TargetType.

XAML
<Style x:Key="Style1">
  <Setter Property="Control.Background" Value="Yellow"/>
</Style>

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2012 Microsoft. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker