(X) Hide this Watch the recordings of our recent webinars: Switch or no switch: Can I build my business apps in LightSwitch and Switching on the Cloud for Silverlight by Gill Cleeren
Our next webinar is on May 11th: Getting started with the Silverlight 5 Beta. Join it!
Skip Navigation LinksHome / Search

Search

 
Results Per Page

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

Page 
  • 1
  • 2
  • 3
  • 4
Next
Order by Publish Date   Ascending Title   Rating  

  • 1 comments  /  posted by  Svetla Stoycheva  on  Apr 25, 2011 (6 days ago)
    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on Twitter

    In this post Colin Eberhardt describes a novel method of generating boiler-plate MVVM code using codesnippet automation. You simply add attributes to your view model classes and the code is generated for you!

    Source: Scott Logic's Blog

    Model-View-ViewModel (MVVM) has become the de facto pattern for Silverlight, WPF and WP7 applications, providing code that is easily tested and couples cleanly to the view via databinding. However, one small problem with MVVM is that it relies on the INotifyPropertyChanged (INPC) interface and the boiler-plate code which this entails.

    This blog post describes a technique for implementing INPC and adding properties to your view model as easily as this:



  • 0 comments  /  posted by  Silverlight Show  on  Apr 18, 2011 (1 week ago)
    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on Twitter

    This blog post by Colin Eberhardt describes a Windows Phone 7 NavigationList control - a list control designed for navigation pages.

    Source: ScottLogic

    A few months ago I blogged about the relative performance of the Windows Phone 7 emulator versus the same code being run on the real hardware. There were a couple of take-home messages from this blog post, firstly the performance on real hardware is typically much slower than the emulator, and secondly an ItemsControl can render the same content as a ListBox in less time, making them a better choice for rendering lists of items for navigation.
  • 0 comments  /  posted by  Silverlight Show  on  Apr 08, 2011 (3 weeks ago)
    Tags: Windows Phone 7 , Gartner , Colin Eberhardt

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterColin Eberhardt has posted a summary of Gartner's latest mobile smartphone sales predications.

    Source: ScottLogic

    Yesterday Gartner released its latest mobile smartphone sales predications, with the figures showing a dramatic turnaround in their predictions for the Microsoft Windows Phone 7 platform.
  • Metro In Motion #3 – Flying Titles!

    0 comments  /  posted by  Silverlight Show  on  Apr 04, 2011 (3 weeks ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on Twitter In this blog post, Colin Eberhardt looks at how to implement the fly-out fly-in effect seen in native Windows Phone 7 applications.

    Source: ScottLogic

    This is the third in my “Metro In Motion” series where I am looking at how to re-create some of the stylish transitions and animations found in native Windows Phone 7 applications. As a Silverlight developer we have controls that adhere to the static Metro styling, but apart from Pivot and Panorama, the more dynamic features of the Metro style are something we have to come up with ourselves. So far previous posts have provided re-useable implementations for the fluid list animations between pivot pages and the ‘peel’ animation seen when applications exit. In this blog post I provide a simple re-useable implementation of the title fly-out and fly-in effect. This effect is not that easy to describe, so we’ll let the following picture do the talking …
  • Metro In Motion Part #2 – ‘Peel’ Animations

    0 comments  /  posted by  Silverlight Show  on  Mar 27, 2011 (1 month ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterColin Eberhardt published part 2 of his Metro in Motion series (read part 1 here). In this post Colin demonstrates how to implement the animated ‘peel’ effect seen when native Windows Phone 7 applications exit.

    Source: ScottLogic

    In my previous blog post I discussed how the Metro Design Language that heavily influences the Windows Phone 7 style is not just about static graphics, it is also about fluid transitions. In that post I demonstrated a technique for making items within lists slide gracefully as the user moves between pivot pages. The post was pretty popular, so I have decided to turn it into a series, looking at how to implement the various fluid animations that are present in Windows Phone 7 native applications.

    A feature found in most native Windows Phone 7 applications is the ‘peel’ effect where when the application is exited, the various components peel away from the top of the screen to the bottom. You can see my implementation of this effect in action in the video below. You might have to watch it a few times, the animation comes right at the end as is over pretty quickly!

  • Metro In Motion – Fluid List Animation

    0 comments  /  posted by  Silverlight Show  on  Mar 24, 2011 (1 month ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterIn this blog post, Colin Eberhardt presents an attached behaviour that gracefully slides the contents of a list into view when used in conjunction with a Pivot control, emulating the Windows Phone 7 email application.

    Source: ScottLogic

    Silverlight for Windows Phone 7 provides a basic Metro styling for elements such as Buttons and Checkboxes, it also has a few phone specific controls such as Pivot and Panorama. These controls make it easy to create a basic Metro interface, although again, I refer you to Scott Barnes’ blog, Metro is not all about black and white! However, when using a WP7 phone you will probably notice that the native applications, email, maps and settings, have a bit more ‘flair’, lists gracefully slide into view, or ‘peel’ off the screen when an item is selected. Metro is not just about static style, it is “alive in motion”.
  • A Silverlight Resizable TextBlock (and other resizable things)

    0 comments  /  posted by  Silverlight Show  on  Mar 15, 2011 (1 month ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterIn this blog post, Colin Eberhardt presents a simple attached behaviour that uses a Thumb control within a Popup to adorn any UI element so that the user can resize it.

    Source: ScottLogic

    A simple feature that has become quite popular on the web is to attache a small handle to text areas so that the user can resize them, this is useful if a user wants to add a large piece of text to a small comment form for example. Interestingly the Google Chrome browser makes all text areas resizeable by default, which leads to web developers wondering how to turn this feature off for their website. I thought that this was a pretty useful feature, so decided to implement a little attached behaviour that would do the same think for Silverlight.
  • 0 comments  /  posted by  Silverlight Show  on  Mar 11, 2011 (1 month ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterIn this article, Colin Eberhardt describes the development of a Windows Phone 7 Jump List control, giving a step-by-step account of the control's development.

    Source: The Code Project

    About a month ago I created a Jump List control for Windows Phone 7 and published it on my blog. I got a lot of great feedback from the control, including questions about how certain parts of it work. As a result I decided to publish an in-depth article here on codeproject which describes the development of this control.
                                                   
  • MVVM Charting – Binding Multiple Series to a Visiblox Chart

    0 comments  /  posted by  Silverlight Show  on  Mar 06, 2011 (1 month ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterIn this post, Colin Eberhardt describes a method of using attached properties to bind a ViewModel which contains multiple data series to a Visiblox chart without any code-behind.

    Source: ScottLogic

     The Visiblox chart supports databinding in both WPF and Silverlight, where the X and Y values for each datapoint are bound to properties on an underlying model. However, there is no interface for binding a varying number of series (i.e a collection of collections). The solution provided here is similar to the one which Jeremiah Morrill published for binding multiple series to the Silverlight Toolkit charts, but with a few added extras, like series title binding and series type selection.

  • Google Sky on Windows Phone 7

    0 comments  /  posted by  Silverlight Show  on  Feb 22, 2011 (2 months ago)

    SilverlightShow Page for all Silverlight and Windows Phone 7 (WP7) things on TwitterIn this blog post, Colin Eberhardt shows just how easy it is to use Google Sky as a tile source for Bing Maps, bringing the universe to Windows Phone 7!

    Source: ScottLogic


     Personally I think mapping is one of the most exciting forms of application for mobile devices – the fantastic imagery available from Bing and Google maps, coupled with GPS technology, results in some pretty amazing tools. As a Windows Phone 7 developer, I have spent a fair bit of time poking round the Silverlight Bing Maps APIs. A really cool feature of the Bing Maps control is that it accepts custom tile-sources. You can find code elsewhere that explains how to use this to render Google Maps data via a Bing maps chart control. For a bit of fun I decided to use this approach to render Google Sky on WP7

Page 
  • 1
  • 2
  • 3
  • 4
Next