如何让字幕的一部分在C#中变为粗体?

时间:2016-10-10 08:48:26

标签: c# winforms

我必须在代码中制作WF标题。

DataRowView drv = bindingSource.Current as DataRowView;
string postOffice = drv["POST_OFFICE_NAME"].ToString();
Text = "Some text" + " [" + postOffice + "]";

如何加粗此字符串" postOffice"([]括号中的字符串)?这是WF头衔的一部分。

enter image description here

0 个答案:

没有答案