From 840a6877bf2451ce9a2fd6c27c3b0e8b5bd791b8 Mon Sep 17 00:00:00 2001 From: Tim Young Date: Fri, 11 Aug 2017 15:05:22 -0500 Subject: [PATCH] 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. --- EduNetworkBuilder/PersonProfileForm.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/EduNetworkBuilder/PersonProfileForm.cs b/EduNetworkBuilder/PersonProfileForm.cs index 82fc1ce..0dd2b3e 100644 --- a/EduNetworkBuilder/PersonProfileForm.cs +++ b/EduNetworkBuilder/PersonProfileForm.cs @@ -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)