Exemplo n.º 1
0
        public static string Get(ThreadsChangedStatus destination)
        {
            switch (destination)
            {
                case ThreadsChangedStatus.Add:
                    return "新規スレッド追加";
                case ThreadsChangedStatus.Remove:
                    return "スレッド削除";

                default:
                case ThreadsChangedStatus.None:
                    return string.Empty;
            }
        }
Exemplo n.º 2
0
 public ThreadsChangedEventArgs(Thread thread, ThreadsChangedStatus status)
 {
     Thread = thread;
     Status = status;
 }