示例#1
0
        // RichTextBox

        public static void AppendParagraphAutoScroll(this RichTextBox a, string text)
        {
            a.AppendAutoScroll("\n" + text + "\n");
        }
示例#2
0
 public static void AppendLineAutoScroll(this RichTextBox a, string text)
 {
     a.AppendAutoScroll(text + "\n");
 }