SagiK-Repository / POC_.Net_DevExpress

✔ [POC] .Net DevExpress를 분석합니다.
0 stars 0 forks source link

Devexress Mvvm CodeGenerator #18

Closed SAgiKPJH closed 9 months ago

SAgiKPJH commented 9 months ago
SAgiKPJH commented 9 months ago

CodeGenerator?


사전 요건


Nuget 설치

SAgiKPJH commented 9 months ago

CodeGenerator 사용하기

using DevExpress.Mvvm.CodeGenerators;

[GenerateViewModel]
partial class ViewModel {
    [GenerateProperty]
    string username;

    [GenerateProperty]
    string status;

    [GenerateCommand]
    void Login() => Status = "User: " + Username;

    bool CanLogin() => !string.IsNullOrEmpty(Username);
}
SAgiKPJH commented 9 months ago

심화

String Length


OnChangeMethod

Async Command (1)

SAgiKPJH commented 9 months ago

연동 가능

SAgiKPJH commented 9 months ago

Example