ExportEffectAttribute Class
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.
Attribute that identifies a Effect with a unique identifier that can be used with Resolve(String) to locate an effect.
[System.AttributeUsage(System.AttributeTargets.Assembly, AllowMultiple=true)]
public sealed class ExportEffectAttribute : Attribute
type ExportEffectAttribute = class
inherit Attribute
- Inheritance
-
System.AttributeExportEffectAttribute
- Attributes
-
System.AttributeUsageAttribute
Remarks
Developers must supply a name that is unique over the scope of the value that was supplied to ResolutionGroupNameAttribute. The Resolve(String) method takes a string that is the concatenation of the the resolution group name that was provided to ResolutionGroupNameAttribute, '.
', and the name that was supplied to ExportEffectAttribute, and returns an effect that will have the type effectType
.
For example, with the declarations:
[assembly: ResolutionGroupName ("com.YourCompany")]
[assembly: ExportEffect (typeof (ShadowEffect), "ShadowEffect")]
Then the code below will add the effect to a button:
var button = new Button { Text = "I have a shadow" };
button.Effects.Add (Effect.Resolve ("com.YourCompany.ShadowEffect"));
Constructors
ExportEffectAttribute(Type, String) |
Creates a new ExportEffectAttribute. |