diff --git a/CPF.Razor/Controls/Element.cs b/CPF.Razor/Controls/Element.cs index 2ddc7c3..df6fc25 100644 --- a/CPF.Razor/Controls/Element.cs +++ b/CPF.Razor/Controls/Element.cs @@ -87,15 +87,19 @@ namespace CPF.Razor.Controls } Dictionary handlerIds = new Dictionary(); + + /// + /// 事件 + /// HashSet events = new HashSet(); /// /// 元素属性 /// - Dictionary ePs = new Dictionary(); + Dictionary ePs = new Dictionary(); /// /// 依赖属性,用于绑定通知,TextChanged /// - Dictionary cPs = new Dictionary(); + Dictionary cPs = new Dictionary(); protected override T CreateElement() { @@ -136,7 +140,7 @@ namespace CPF.Razor.Controls events.Add(name); } r.Commands.Add(nameof(r.PropertyChanged), (s, e) => - { + {//属性变换通知事件,给onXXXChanged var pe = (CPFPropertyChangedEventArgs)e; if (handlerIds.TryGetValue("on" + pe.PropertyName + "Changed", out var id)) { @@ -154,7 +158,11 @@ namespace CPF.Razor.Controls return r; } - + /// + /// 处理标签内部文字 + /// + /// + /// public void HandleText(int index, string text) { if (Element is CPF.Controls.ContentControl control) @@ -162,7 +170,10 @@ namespace CPF.Razor.Controls control.Content = text; } } - + /// + /// 实现Razor控件自动转换成CPF控件 + /// + /// public static implicit operator T(Element element) { return element.Element; diff --git a/CpfRazorSample/Test.razor b/CpfRazorSample/Test.razor index b84fd84..3207a6b 100644 --- a/CpfRazorSample/Test.razor +++ b/CpfRazorSample/Test.razor @@ -7,7 +7,7 @@ { } - +