(X) Hide this Upcoming webinar by Brian Noyes: Querying and Updating Data From Silverlight Clients with WCF RIA Services. February 2nd, 10 am PST (see your local time)
Full webinar info | Register | Read WCF RIA Services Article series by Brian Noyes
Become a member to receive all webinar news by email, or follow all webinar news on Twitter | Facebook | LinkedIn
Skip Navigation LinksHome / Search

Search

 
Results Per Page

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

Order by Publish Date   Ascending Title   Rating  

  • Get Application Title from Windows Phone

    0 comments  /  posted by  Silverlight Show  on  Jan 05, 2011 (3 weeks ago)

    Paul Sheriff found out how to programmatically get the title for your Windows Phone application.

    Source: Paul Sheriff's Blog

    In a Windows Phone application that I am currently developing I needed to be able to retrieve the Application Title of the phone application. You can set the Deployment Title in the Properties of your Windows Phone Application, however getting to this value programmatically can be a little tricky.



  • Change Templates When Orientation Changes on Windows Phone

    0 comments  /  posted by  Silverlight Show  on  Nov 22, 2010 (2 months ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterPaul Sheriff explains how to deal with orientation changes in Windows Phone 7.

    Source: Paul Sheriff's Blog for the Real World

    Developing for Windows Phone does require you to think a little differently. For example on a regular computer you only have to worry about the screen orientation being in portrait mode. However, on a phone the user can turn the phone sideways and even upside down. If the user switches from portrait orientation (Figure 1) to landscape orientation (Figure 2) you end up with more room to display your data horizontally. You can take advantage of this extra room by switching between two different XAML templates when the phone orientation changes.

  • 0 comments  /  posted by  Silverlight Show  on  Nov 01, 2010 (2 months ago)
    Paul Sheriff demonstrates how to create a Listbox that displays some product data in a Windows Phone application.

    Source: Paul Sheriff's Blog

    Developing for Windows Phone is easy if you have been doing any XAML at all. That’s because you use Silverlight for Windows Phone development! This is a great thing because everything you already know you can apply immediately. Let’s take a simple example like presenting a list of products with images in a list box (Figure 1) in the Windows Phone emulator. This article assumes that you have VS.NET 2010 and the Windows Phone tools installed along with it. The Windows Phone tools must be downloaded separately and installed with VS.NET 2010. You may also download the free VS.NET 2010 Express for Windows Phone developer environment.


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

  • 0 comments  /  posted by  Silverlight Show  on  Sep 30, 2010 (3 months ago)
    Here is another post of Paul Sheriff about value converters in Silverlight 4.

    Source: Paul Sheriff's Blog

    When you start to bind data in Silverlight (or WPF for that matter) you will most likely have data that is in one format that you may need to convert to another format. For example if you have a decimal number (price) that is 19.95, you would want to display it as $19.95. Of course you can use a normal .NET format string to accomplish this, but you could also write some code to convert the decimal number 19.95 to a string with the dollar sign in front of it “$19.95”.

  • 1 comments  /  posted by  Silverlight Show  on  Jul 26, 2010 (6 months ago)
    Paul Sheriff demonstrates two ways of using the CollectionViewSource to sort data. The first one is in XAML and in the second post Paul is using code.

    If you are using Silverlight's ListBox control, you do not have to write code to sort your data. Instead you can use the built-in CollectionViewSource object in XAML to perform the sorting for you. This assumes that you are using a collection that implements the IEnumerable or IList interfaces.

  • Control to Control Binding in WPF/Silverlight

    0 comments  /  posted by  Silverlight Show  on  May 13, 2010 (8 months ago)
    Take a look at this quick post of Paul Sheriff in which he explains how to easily connect controls together using data binding in XAML.

    In the past if you had two controls that you needed to work together, you would have to write code. For example, if you want a label control to display any text a user typed into a text box you would write code to do that. If you want turn off a set of controls when a user checks a check box, you would also have to write code. However, with XAML, these operations become very easy to do.