实现基本的节点组装逻辑

This commit is contained in:
zengwenjie
2025-09-15 21:37:13 +08:00
parent a6e92b6704
commit cba82ca4c4
7 changed files with 136 additions and 7 deletions

View File

@@ -99,15 +99,14 @@ namespace Deedy.Activity
}
public static readonly DependencyProperty DeedyActionProperty =
DependencyProperty.Register("DeedyAction", typeof(IDeedyAction), typeof(ActionViewer), new PropertyMetadata(null,
(d, e) => (d as ActionViewer)?.DeedyAction_PropertyChangedCallback(d, e)));
(d, e) => (d as ActionViewer)?.DeedyAction_PropertyChangedCallback(e)));
/// <summary>
/// 处理「DeedyActionViewer.DeedyAction」属性变更
/// </summary>
protected virtual void DeedyAction_PropertyChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
protected virtual void DeedyAction_PropertyChangedCallback(DependencyPropertyChangedEventArgs e)
{
//
}
public void ReadyToWorking(Runtime? runtime)
{
throw new NotImplementedException();