我目前有以下代码:
Label lbltxt = new Label();
lbltxt.Font = new System.Drawing.Font("Microsoft Sans Serif",
10F,
System.Drawing.FontStyle.Bold,
System.Drawing.GraphicsUnit.Point,
((byte)(0)));
lbltxt.Text = dr["Title"].ToString();
string text = lbltxt.Text;
string s = lbltxt.Text + Environment.NewLine + dr["Description"].ToString();
我想加粗dr["title"]
并将其添加到 normal dr["description"]
。我使用上面的代码将一部分加粗并将其添加到 中dr["description"]
,但它不起作用。我在winforms中使用它,我将数据集添加到datagridview并在datadridview中显示结果。