示例#1
0
 public ChatAction(TwitchChannel channel, MainWindow controller, TwitchUser user, string message)
     : base(channel, controller, ItemType.Action, user, message)
 {
 }
示例#2
0
 public StatusMessage(TwitchChannel channel, MainWindow controller, string message)
     : base(channel, controller, ItemType.Status)
 {
     Message = message;
 }
示例#3
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, TwitchUser user, string message, bool question)
     : base(channel, controller, question ? ItemType.Question : ItemType.Message)
 {
     User = user;
     Message = message;
 }
示例#4
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, ItemType type, TwitchUser user, string message)
     : base(channel, controller, type)
 {
     User = user;
     Message = message;
 }
示例#5
0
 public ChatItem(TwitchChannel channel, MainWindow controller, ItemType type)
 {
     Channel = channel;
     Controller = controller;
     Type = type;
 }
示例#6
0
 public Subscriber(TwitchChannel channel, MainWindow controller, TwitchUser user)
     : base(channel, controller, ItemType.Subscriber)
 {
     User = user;
 }
示例#7
0
 public Subscriber(MainWindow controller, TwitchUser user)
     : base(controller, ItemType.Subscriber)
 {
     User = user;
 }
示例#8
0
 public ChatItem(MainWindow controller, ItemType type)
 {
     Controller = controller;
     Type = type;
     Time = DateTime.Now;
 }
示例#9
0
 public ChatAction(TwitchChannel channel, MainWindow controller, TwitchUser user, string message)
     : base(channel, controller, ItemType.Action, user, message)
 {
 }
示例#10
0
 public StatusMessage(MainWindow controller, string message)
     : base(controller, ItemType.Status)
 {
     Message = message;
 }
示例#11
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, ItemType type, TwitchUser user, string message)
     : base(channel, controller, type)
 {
     User    = user;
     Message = message;
 }
示例#12
0
 public ChatMessage(TwitchChannel channel, MainWindow controller, TwitchUser user, string message, bool question)
     : base(channel, controller, question ? ItemType.Question : ItemType.Message)
 {
     User    = user;
     Message = message;
 }
示例#13
0
 public Subscriber(TwitchChannel channel, MainWindow controller, TwitchUser user)
     : base(channel, controller, ItemType.Subscriber)
 {
     User = user;
 }
示例#14
0
 public ChatItem(TwitchChannel channel, MainWindow controller, ItemType type)
 {
     Channel    = channel;
     Controller = controller;
     Type       = type;
 }
示例#15
0
 public StatusMessage(TwitchChannel channel, MainWindow controller, string message)
     : base(channel, controller, ItemType.Status)
 {
     Message = message;
 }