Example #1
0
 private void menuCopyURL_Click(object sender, EventArgs e)
 {
     if (gridData.Rows.Count > 0)
     {
         FaceBook           model        = gridData.Rows[gridData.CurrentCell.RowIndex].DataBoundItem as FaceBook;
         FaceBookController fbController = new FaceBookController();
         string             strURL       = fbController.GetFaceBookLoginURL(model, "https://www.facebook.com/me");
         if (!string.IsNullOrEmpty(strURL))
         {
             Clipboard.SetText(strURL);
             //MessageBox.Show("Đã copy URL vào clipboad");
         }
     }
 }