Files
BeWoPlaner/BeWo/Services/IWindowFactory.cs
2025-04-22 10:11:51 +02:00

19 lines
522 B
C#

using BeWo.View.Windows;
using BS.Shared;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
namespace BeWo.Services
{
internal interface IWindowFactory
{
AnimatedBeWoWindow GetAiConversationWindow(UIContext uIContext, Control control, double height = 600, double width = 1200);
Control GetAiModalViewWindow(UIContext uIContext, Control control, double height = 600, double width = 1200);
}
}