Implemented initial version for popping out window for rendering and compose pages
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using Wino.Mail.WinUI.Models;
|
||||
|
||||
namespace Wino.Mail.WinUI.Interfaces;
|
||||
|
||||
public interface IPopoutClient
|
||||
{
|
||||
bool SupportsPopOut { get; }
|
||||
event EventHandler<PopOutRequestedEventArgs> PopOutRequested;
|
||||
event EventHandler<PopoutHostActionRequestedEventArgs> HostActionRequested;
|
||||
HostedPopoutDescriptor GetPopoutDescriptor();
|
||||
void OnPopoutStateChanged(bool isPoppedOut);
|
||||
}
|
||||
Reference in New Issue
Block a user