using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Serein.Library.Api
{
///
/// 流程中的控件
///
public interface IFlowUIControl
{
///
/// 节点执行事件
///
void OnExecuting(object data);
}
///
/// 自定义UI显示
///
public interface IEmbeddedContent
{
///
/// 获取用户控件(WPF)
///
object GetUserControl();
///
/// 获取窗体控件
///
///
IFlowUIControl GetFlowControl();
}
}