Skip to content

trcio/Clipper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Clipper

Easily hook onto Window's clipboard in an easy, event-driven fashion.

###Use Example form with a textbox that automatically shows the clipboard whenever it changes.

using Clipper;
using Clipper.Entities;

public partial class ExampleForm : Form
{
    public ExampleForm()
    {
        InitializeComponent();
        ClipperGlobal.ClipperTextChanged += ClipperGlobal_ClipperTextChanged;
        ClipperGlobal.Initialize();
    }

    private void ClipperGlobal_ClipperTextChanged(ClipperEventArgs e)
    {
        textBox1.Text = e.ClipboardText;
    }
}

About

Easily hook onto Window's clipboard in an easy, event-driven fashion.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages