13 lines
294 B
C#
13 lines
294 B
C#
using Microsoft.UI.Xaml;
|
|
using Microsoft.UI.Xaml.Controls;
|
|
|
|
namespace Wino.Core.WinUI.Interfaces;
|
|
|
|
public interface IWinoShellWindow
|
|
{
|
|
void HandleAppActivation(LaunchActivatedEventArgs args);
|
|
TitleBar GetTitleBar();
|
|
Frame GetMainFrame();
|
|
FrameworkElement GetRootContent();
|
|
}
|