public Chat(ChatIds id, DateTime dt, string user, string text) { this.Id = id; this.DT = dt; this.User = user; this.Text = text; this.Full = string.IsNullOrWhiteSpace(user) ? text : string.Format("<{0}> {1}", user, text); }
private void btnChatSelect_Click(object sender, EventArgs e) { if (this.cmbChat.SelectedIndex == -1) { return; } this.m_chatId = this.cmbChat.SelectedIndex == 0 ? ChatIds.FreeCompany : (ChatIds.LinkShell_1 + this.cmbChat.SelectedIndex - 1); this.lblChat.Text = "현재 설정 :" + FFXIVModule.LogIDs[this.m_chatId]; }
public Chat(ChatIds id, string user, string text) : this(id, DateTime.MinValue, user, text) { }