gpt4 book ai didi

c# - 用户控件中不允许使用文字内容

转载 作者:太空狗 更新时间:2023-10-29 20:09:00 24 4
gpt4 key购买 nike

如何让我的控件在其标签内包含文本?

<uc:My runat="server">Text</uc:My>

我的控件包含一个复杂的表格,我想将文本放入其中一个单元格中。如何做到这一点?

最佳答案

[PersistChildren(false)]
[ParseChildren(true, "Text")]
public partial class RequiredFieldMarker : UserControl, ITextControl
{
[Category("Settings")]
[PersistenceMode(PersistenceMode.EncodedInnerDefaultProperty)]
public string Text
{
get
{
return lblName.Text;
}
set
{
lblName.Text = value;
}
}
}

关于c# - 用户控件中不允许使用文字内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1827648/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com