internal static void ShowHtmlTags(Form form) { CharSelect specialCharsWindow = new CharSelect { Owner = form }; specialCharsWindow.InitializeForm(CharSelect.CharType.Html); specialCharsWindow.Show(form); }
internal static void ShowSpecialChars(Form form) { CharSelect specialCharsWindow = new CharSelect { Owner = form }; specialCharsWindow.InitializeForm(CharSelect.CharType.Standard); specialCharsWindow.Show(form); }