Exemplo n.º 1
0
        private void Clipboard_ClipboardChanged(object sender, SharpClipboard.ClipboardChangedEventArgs e)
        {
            if (e.ContentType == SharpClipboard.ContentTypes.Text && e.Content.ToString().Trim() != "")
            {
                FrmClipboard f = FrmClipboard.GetForm(e.Content.ToString());

                f.Show();
            }
        }