I am trying to do "To-Do List" and when I mark something as checked to make the text strikeout:
if (check.Checked)
{
check.Font = new Font(check.Font, FontStyle.Strikeout);
}
What do I do wrong?
I am trying to do "To-Do List" and when I mark something as checked to make the text strikeout:
if (check.Checked)
{
check.Font = new Font(check.Font, FontStyle.Strikeout);
}
What do I do wrong?