Files
DP44/Common/DTS.CommonCore/Dialogs/IPopupWindowActionAware.cs

13 lines
287 B
C#
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System.Windows;
using Microsoft.Practices.Prism.Interactivity.InteractionRequest;
namespace DTS.Common.Dialogs
{
public interface IPopupWindowActionAware
{
Window HostWindow { get; set; }
Notification HostNotification { get; set; }
}
}