Style Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Style() |
Initializes a new instance of the Style class, with no initial TargetType and an empty Setters collection. |
Style(TypeName) |
Initializes a new instance of the Style class, with a specified initial TargetType and an empty Setters collection. |
Style()
Initializes a new instance of the Style class, with no initial TargetType and an empty Setters collection.
public:
Style();
Style();
public Style();
function Style()
Public Sub New ()
See also
Applies to
Style(TypeName)
Initializes a new instance of the Style class, with a specified initial TargetType and an empty Setters collection.
public:
Style(TypeName targetType);
Style(TypeName const& targetType);
public Style(System.Type targetType);
function Style(targetType)
Public Sub New (targetType As Type)
Parameters
The TargetType to set for the Style.
Remarks
If you are programming using C#, the TypeName type projects as System.Type. This is not correctly indicated in the C# syntax above; the targetType
parameter should take a System.Type
. When programming using C#, it is common to use the typeof
operator to get references to the System.Type
of a type.