26 lines
450 B
C#
26 lines
450 B
C#
using DevExpress.Mvvm;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
|
|
namespace BeWo.ViewModel.View
|
|
{
|
|
public class DialogViewModel : WindowViewModel
|
|
{
|
|
public event EventHandler RequestCloseFinal;
|
|
|
|
public DialogViewModel() : base()
|
|
{
|
|
|
|
}
|
|
|
|
protected virtual void Close()
|
|
{
|
|
RequestCloseFinal?.Invoke(this, EventArgs.Empty);
|
|
}
|
|
}
|
|
}
|