SampleSmart
1.0.0.0
SampleSmart 사용 방법을 보여 주는 예제 프로젝트입니다.
Toggle main menu visibility
로딩중...
검색중...
일치하는것 없음
PopupNotice.xaml.ViewModel.cs
이 파일의 문서화 페이지로 가기
1
using
Dreamine.MVVM.Attributes;
2
using
Dreamine.MVVM.ViewModels;
3
4
namespace
SampleSmart.Pages.WindowSub
5
{
14
public
partial class
PopupNoticeViewModel
: ViewModelBase
15
{
24
[DreamineModel]
25
private
PopupNoticeModel
_model
;
26
35
[DreamineEvent]
36
private
PopupNoticeEvent
_event
;
37
46
public
string
Message
=> Model.Message;
47
56
public
PopupNoticeViewModel
()
57
{
58
_model
=
null
!;
59
_event
=
null
!;
60
}
61
70
[DreamineCommand(
"Event.Ok"
)]
71
private
partial
void
Ok
();
72
}
73
}
SampleSmart.Pages.WindowSub
Definition
PopupMonitor.xaml.cs:16
SampleSmart.Pages.WindowSub.PopupNoticeEvent
Definition
PopupNotice.xaml.Event.cs:14
SampleSmart.Pages.WindowSub.PopupNoticeModel
Definition
PopupNotice.xaml.Model.cs:18
SampleSmart.Pages.WindowSub.PopupNoticeViewModel._model
PopupNoticeModel _model
Definition
PopupNotice.xaml.ViewModel.cs:25
SampleSmart.Pages.WindowSub.PopupNoticeViewModel.PopupNoticeViewModel
PopupNoticeViewModel()
Definition
PopupNotice.xaml.ViewModel.cs:56
SampleSmart.Pages.WindowSub.PopupNoticeViewModel._event
PopupNoticeEvent _event
Definition
PopupNotice.xaml.ViewModel.cs:36
SampleSmart.Pages.WindowSub.PopupNoticeViewModel.Message
string Message
Definition
PopupNotice.xaml.ViewModel.cs:46
SampleSmart.Pages.WindowSub.PopupNoticeViewModel.Ok
partial void Ok()
Pages
WindowSub
PopupNotice.xaml.ViewModel.cs
다음에 의해 생성됨 :
1.17.0