Exemplo n.º 1
0
 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);
 }
Exemplo n.º 2
0
        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];
        }
Exemplo n.º 3
0
 public Chat(ChatIds id, string user, string text) : this(id, DateTime.MinValue, user, text)
 {
 }