mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-28 12:13:25 +08:00
整理一下项目文件
This commit is contained in:
22
AIStudio.Wpf.DiagramHelper/Services/IUIVisualizerService.cs
Normal file
22
AIStudio.Wpf.DiagramHelper/Services/IUIVisualizerService.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace AIStudio.Wpf.DiagramHelper.Services
|
||||
{
|
||||
/// <summary>
|
||||
/// This interface defines a UI controller which can be used to display dialogs
|
||||
/// in either modal form from a ViewModel.
|
||||
/// </summary>
|
||||
public interface IUIVisualizerService
|
||||
{
|
||||
/// <summary>
|
||||
/// This method displays a modal dialog associated with the given key.
|
||||
/// </summary>
|
||||
/// <param name="dataContextForPopup">Object state to associate with the dialog</param>
|
||||
/// <returns>True/False if UI is displayed.</returns>
|
||||
bool? ShowDialog(object dataContextForPopup);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user