示例#1
0
        //通知枠に追加
        public void AddNotify(string str)
        {
            now = DateTime.Now;
            string tmp = NotificationBox.Text;

            NotificationBox.Clear();
            NotificationBox.AppendText("[" + now.ToLongTimeString() + "] " + str + "\n");
            NotificationBox.AppendText(tmp);
        }