ExportEffectAttribute 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
효과를 찾기 위해 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를 만듭니다. |