set tooltip for class, name, and description. the boxes are too small to see the whole thing. Mouseover does tooltip so you can see it.

This commit is contained in:
Tim Young 2017-08-11 15:05:22 -05:00
parent 765789226e
commit 840a6877bf

View File

@ -494,9 +494,15 @@ namespace EduNetworkBuilder
btnHWSave.Visible = false;
return;
}
tbHWClass.Text = ViewedSchoolwork.Class;
tbHWDescription.Text = ViewedSchoolwork.Description;
tbHWName.Text = ViewedSchoolwork.Name;
myTooltip.SetToolTip(tbHWClass, tbHWClass.Text);
myTooltip.SetToolTip(tbHWDescription, tbHWDescription.Text);
myTooltip.SetToolTip(tbHWName, tbHWName.Text);
dtpHWDue.Visible = true;
lblHWDue.Visible = true;
if (ViewedSchoolwork.IsSumbitted)