Dreamine.MVVM.Attributes 1.0.7
Dreamine.MVVM.Attributes 프로젝트의 API와 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
DreamineEventAttribute.cs
이 파일의 문서화 페이지로 가기
1using System;
2
4{
31 [AttributeUsage(AttributeTargets.Class | AttributeTargets.Field, AllowMultiple = false, Inherited = false)]
32 public sealed class DreamineEventAttribute : Attribute
33 {
50 public string? PropertyName { get; }
51
68 public DreamineEventAttribute(string? propertyName = null)
69 {
70 PropertyName = propertyName;
71 }
72 }
73}
DreamineEventAttribute(string? propertyName=null)
DreamineEventAttribute 클래스의 새 인스턴스를 초기화합니다.
string? PropertyName
생성될 프로퍼티 이름을 가져옵니다.