From 09727c75e115bf60b2a44dd0851ea989f810047b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E7=BA=A2=E5=B8=BD?= <761716178@qq.com> Date: Tue, 9 Jan 2024 17:47:19 +0800 Subject: [PATCH] =?UTF-8?q?razor=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CPF.Razor/Controls/Element.cs | 21 ++++++++++++++++----- CpfRazorSample/Test.razor | 2 +- 2 files changed, 17 insertions(+), 6 deletions(-) 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 @@ { } - +