// User clicked the Get Information (vcard) ActionMenu
        private void GetInformationAction_Click(object sender, EventArgs e)
        {
            UserVCardDialog dialog = new UserVCardDialog();

            dialog.LoadVCard((jabber.JID)(sender as ToolStripItem).Tag);
            dialog.Show();
        }
Example #2
0
        private void GetInformationMenuItem_Click(object sender, EventArgs e)
        {
            RosterItem ri = (RosterItem)(sender as ToolStripMenuItem).Tag;

            UserVCardDialog uvd = new UserVCardDialog();

            uvd.LoadVCard(ri.Jid);
            uvd.Show();
        }
 // User clicked the Get Information (vcard) ActionMenu
 private void GetInformationAction_Click(object sender, EventArgs e)
 {
     UserVCardDialog dialog = new UserVCardDialog ();
     dialog.LoadVCard ((jabber.JID)(sender as ToolStripItem).Tag);
     dialog.Show ();
 }