winform里面的label怎么样实现,字上删除的效果

label属性里的Font
方法理由 Strikeout 选成True 就行了 

button1_Click(object sender, EventArgs e)
{
Graphics g =
Graphics.FromHwnd(label1.Handle);
g.DrawLine(new Pen(Color.Red,1), 0,
label1.Height / 2, label1.Width, label1.Height / 2);

}
原文地址:https://www.cnblogs.com/fer-team/p/7919456.html