private void btnPublish_Click(object sender, EventArgs e) { frmSendTwits fsr = new frmSendTwits(); fsr.ShowDialog(); if (fsr.DialogResult == DialogResult.OK) { LoadFriendTimeline(); } }
public void comment(string tid) { if (!string.IsNullOrEmpty(tid)) { frmSendTwits fst = new frmSendTwits(tid); fst.Show(); } else { iMessageBox.Show("原微博加载失败!"); } }
public void repost(string tid, string uname) { if (!string.IsNullOrEmpty(tid)) { frmSendTwits fst = null; var status = TwitsControler.Controler.Client.API.Entity.Statuses.Show(tid); if (status.RetweetedStatus == null) { fst = new frmSendTwits(tid, uname); } else { fst = new frmSendTwits(tid, uname, status.Text); } fst.Show(); } else { iMessageBox.Show("原微博加载失败!"); } }