-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Description
When the control is placed on a form and is initially set to Visible=false, setting Visible=true does not entirely do the trick, because of this line in HtmlEditor.Visible (HtmlEditor.Properties.cs):
panelEditContainer.Visible = base.Visible;
Due to the way .NET/WinForms works, this returns false, even after setting it to true the line above, because the real visibility state has not been changed yet. Changing the line to the following does the trick:
panelEditContainer.Visible = value;
Metadata
Metadata
Assignees
Labels
No labels