다음을 통해 공유


ExportEffectAttribute 클래스

정의

효과를 찾기 위해 Resolve(String)와 함께 사용할 수 있는 고유 식별자로 Effect를 식별하는 속성입니다.

public ref class ExportEffectAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Assembly, AllowMultiple=true)]
public sealed class ExportEffectAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Assembly, AllowMultiple=true)>]
type ExportEffectAttribute = class
    inherit Attribute
Public NotInheritable Class ExportEffectAttribute
Inherits Attribute
상속
ExportEffectAttribute
특성

설명

개발자는 제공 ResolutionGroupNameAttribute된 값의 범위에 대해 고유한 이름을 제공해야 합니다. 메서드는 Resolve(String) ''.에 제공된 확인 그룹 이름과 제공된 ResolutionGroupNameAttribute이름의 연결인 문자열을 ExportEffectAttribute사용하고 형식effectType이 있는 효과를 반환합니다.

예를 들어 선언을 사용하는 경우는 다음과 같습니다.

[assembly: ResolutionGroupName ("com.YourCompany")]
[assembly: ExportEffect (typeof (ShadowEffect), "ShadowEffect")]

그런 다음 아래 코드는 단추에 효과를 추가합니다.

var button = new Button { Text = "I have a shadow" };
button.Effects.Add (Effect.Resolve ("com.YourCompany.ShadowEffect"));

생성자

ExportEffectAttribute(Type, String)

ExportEffectAttribute를 만듭니다.

적용 대상

추가 정보