Beispiel #1
0
 internal InfoBarActionViewModel(InfoBarViewModel owner, IInfoBarTextSpan textSpan) : base(owner, textSpan)
 {
     ClickActionItemCommand = new DelegateCommand(OnClickActionItemCommandExecuted);
 }
Beispiel #2
0
 internal InfoBarTextViewModel(InfoBarViewModel owner, IInfoBarTextSpan textSpan)
 {
     Validate.IsNotNull(textSpan, nameof(textSpan));
     TextSpan = textSpan;
     Owner    = owner;
 }