Files
serein-flow/Library/Api/IEmbeddedContent.cs
2025-07-04 21:31:07 +08:00

42 lines
770 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Serein.Library.Api
{
/// <summary>
/// 流程中的控件
/// </summary>
public interface IFlowUIControl
{
/// <summary>
/// 节点执行事件
/// </summary>
void OnExecuting(object data);
}
/// <summary>
/// 自定义UI显示
/// </summary>
public interface IEmbeddedContent
{
/// <summary>
/// 获取用户控件WPF
/// </summary>
object GetUserControl();
/// <summary>
/// 获取窗体控件
/// </summary>
/// <returns></returns>
IFlowUIControl GetFlowControl();
}
}