I'm trying to close my Caliburn window but unsure how to use it.
CanClose expects one item in it's parameter Parameter 1 - Action callback
I'm simply trying to use the function this.CanClose() but unsure what goes inbetween the parenthesis
public void closeWindow()
{
this.CanClose();
}
public override void CanClose(Action<bool> callback)
{
base.CanClose(callback);
}