Exemplo n.º 1
0
        internal static void ShowHtmlTags(Form form)
        {
            CharSelect specialCharsWindow = new CharSelect {
                Owner = form
            };

            specialCharsWindow.InitializeForm(CharSelect.CharType.Html);
            specialCharsWindow.Show(form);
        }
Exemplo n.º 2
0
        internal static void ShowSpecialChars(Form form)
        {
            CharSelect specialCharsWindow = new CharSelect {
                Owner = form
            };

            specialCharsWindow.InitializeForm(CharSelect.CharType.Standard);
            specialCharsWindow.Show(form);
        }