Fri 25 May 2012
wxPython: How to use the Clipboard
Posted by Mike under Python, wxPython
No Comments
Everyone who uses computers regularly knows that they can copy and paste text. What they might not know is that when you copy something, it goes into a location known as the “clipboard”. Most programs provide access to a clipboard of some sort, whether it be just within the program itself or to the system clipboard, which allows items to be copied to other applications. The wxPython GUI toolkit also provides clipboard access, which you can use to copy text to and from within your program and even to the system clipboard. You can also copy images to the clipboard. In this tutorial, we’ll take a look at how you can do this in your own code. (more…)