You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
797 B
27 lines
797 B
1 year ago
|
using System;
|
||
|
using FluentAvalonia.UI.Controls;
|
||
|
|
||
1 year ago
|
namespace StabilityMatrix.Avalonia.ViewModels.Base;
|
||
1 year ago
|
|
||
1 year ago
|
public class ContentDialogProgressViewModelBase : ProgressViewModel
|
||
1 year ago
|
{
|
||
|
public event EventHandler<ContentDialogResult>? PrimaryButtonClick;
|
||
|
public event EventHandler<ContentDialogResult>? SecondaryButtonClick;
|
||
|
public event EventHandler<ContentDialogResult>? CloseButtonClick;
|
||
|
|
||
|
public virtual void OnPrimaryButtonClick()
|
||
|
{
|
||
|
PrimaryButtonClick?.Invoke(this, ContentDialogResult.Primary);
|
||
|
}
|
||
|
|
||
|
public virtual void OnSecondaryButtonClick()
|
||
|
{
|
||
|
SecondaryButtonClick?.Invoke(this, ContentDialogResult.Secondary);
|
||
|
}
|
||
|
|
||
|
public virtual void OnCloseButtonClick()
|
||
|
{
|
||
|
CloseButtonClick?.Invoke(this, ContentDialogResult.None);
|
||
|
}
|
||
|
}
|