(X) Hide this Watch a recording of the live webcast '10 Silverlight Tips' by Gill Cleeren, delivered on October 27th.
Skip Navigation LinksHome / Search

Search

 
Results Per Page

Found 6 results for Clipboard.
Date between: <not defined> and <not defined>
Search in: News , Articles , Tips , Shows , Showcase , Books

Order by Publish Date   Ascending Title   Rating  

  • 0 comments  /  posted by  Silverlight Show  on  Nov 08, 2010 (5 days ago)

    In this tutorial, Ryan Alford shows how to use Silverlight 4 to get access to the client clipboard.

    Source: Eclipsed4utoo's Blog

    Silverlight 3 had limited clipboard access, but Microsoft implemented more complete access to the clipboard.

    For security purposes, access to the clipboard is only allowed through a user-initialed event. For example, you couldn’t have a timer running in the background to constantly get text from the clipboard.

    Follow us on twitter We tweet all news and content updates - follow us on Twitter! 



  • 0 comments  /  posted by  Silverlight Show  on  Sep 16, 2010 (1 month ago)
    Tags: Clipboard , Tips , Silverlight 4 , Sharker Khaleed Mahmud
    In this post, Sharker Khaleed Mahmud demonstrates copy and paste with Silverlight.

    Source: Sharker Khaleed Mahmud Silverlight Tips & Tricks

    In this entry I am going to do a simple scenario involving copy and paste. Basically, the clipboard class has three members, ContainsText, GetText and SetText. To demonstrate, I will use a simple textbox.

  • Silverlight 4 vs Flex 4: Accessing the Clipboard

    0 comments  /  posted by  Svetla Stoycheva  on  Feb 25, 2010 (8 months ago)

    In his blog Alex van Beek compared Flex 4 and Silverlight 4’s clipboard access abilities.

    In this post I’m comparing Flex 4 and Silverlight 4’s clipboard access abilities. My previous post was rather long, so I’ll try to keep this one short :). Accessing the clipboard should be an interesting comparison, since both Flash 10 and Silverlight 4 take different approaches. I deliberately said "Flash 10" in the previous sentence, because accessing the clipboard in a Flex application is done by using the native Flash 10 ActionScript api and there isn’t any specific Flex code required. 

  • 0 comments  /  posted by  Silverlight Show  on  Dec 07, 2009 (11 months ago)

    The next article from Gill Cleeren's Advent Calendar article series is focused on using the Clipboard in Silverlight 4.

    Silverlight 4 has the ability to copy text to the clipboard, check if there is text available on the clipboard and paste the text from the clipboard back to the Silverlight application. To support this, it has 3 static methods available on the newly added ClipBoard class:

    • Clipboard.SetText()
    • Clipboard.ContainsText()
    • Clipboard.GetText()

    Let’s look at using these in a sample.

  • Silverlight 4's New Clipboard Support

    0 comments  /  posted by  Silverlight Show  on  Nov 26, 2009 (11 months ago)
    One of the many new features coming in Silverlight 4 is the clipboard support, which Jeff Prosise discusses in his new post.

    In the Silverlight 4 beta, only Unicode text can be retrieved from the clipboard or added to it. Microsoft hasn't said whether the final release will support additional clipboard formats, but one can always hope.

    To demonstrate, I built a sample app that features a Paste button for pasting text from the clipboard into a TextBlock.

  • Silverlight 4 Clipboard Access

    0 comments  /  posted by  Silverlight Show  on  Nov 23, 2009 (11 months ago)
    Laurent Duveau discusses the Clipboard support added in Silverlight 4.

    In Silverlight 3 we had copy/paste available in the Textbox, programmatic access could be done, some IE only solution exists via HTML DOM bridge (so not OOB) or cross-browser (involving Flash!). But now the game has changed as we now have an API for multi-platform Clipboard access.