feat: add prism sample.
This commit is contained in:
@@ -1,6 +1,17 @@
|
||||
namespace Ursa.PrismExtension;
|
||||
using Avalonia.Controls;
|
||||
using Ursa.Controls;
|
||||
|
||||
public class IUrsaOverlayDialogService
|
||||
namespace Ursa.PrismExtension;
|
||||
|
||||
public interface IUrsaOverlayDialogService
|
||||
{
|
||||
|
||||
public void Show(string viewName, object? vm, string? hostId = null, OverlayDialogOptions? options = null);
|
||||
|
||||
public void ShowCustom(string viewName, object? vm, string? hostId = null, OverlayDialogOptions? options = null);
|
||||
|
||||
public Task<DialogResult> ShowModal(string viewName, object? vm, string? hostId = null,
|
||||
OverlayDialogOptions? options = null);
|
||||
|
||||
public Task<TResult?> ShowCustomModal<TResult>(string viewName, object? vm, string? hostId = null,
|
||||
OverlayDialogOptions? options = null);
|
||||
}
|
||||
Reference in New Issue
Block a user