다음을 통해 공유


ResolutionGroupNameAttribute 클래스

정의

그룹 이름(일반적으로 회사 이름 또는 역방향된 회사 URL)을 식별하는 속성으로, 효과 이름의 범위를 제공합니다.

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

설명

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

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

[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"));

생성자

ResolutionGroupNameAttribute(String)

새 해결 그룹 이름 특성을 만듭니다.

적용 대상