@(Html.Kendo().PanelBar()
.Name("panelbar")
.ExpandMode(PanelBarExpandMode.Single)
.Items(PanelBar =>
{
PanelBar.Add().Text("abcd")
.Expanded(true)
.Content("abcd-have to show in bold text ");
}))
“abcd”文本必须以粗体显示!???如何获取它,但文本不在 .content 框中!。