Esempio n. 1
0
        private static void _test_string(HistoryDialog hd)
        {
            String s = "This is a long message.";

            for (int i = 0; i < 100; i++)
            {
                hd.AddMessage(s);
            }
        }
Esempio n. 2
0
 // Update the text located in the history buffer with ``message''.
 private void _history(String message)
 {
     Trace.WriteLine(message);
     m_history.AddMessage(message);
 }