• Now that Q1 2012 has been out for a while we have managed to gather some very useful feedback from you on the new stuff that we released with it and with Q1 2012 SP1 it’s time to bring it officially to you. Besides the fine tuning of existing functionality, we are really proud to announce one pretty important and powerful new component that can easily make your application shine: RadHubTile:

            

    This component brings the Windows Phone home screen experience directly to your app without much complexity. It not only covers all native Tile behaviors (animations, layouts etc.) but delivers even new...

  • It is a common scenario when we would like to limit the selectable values in a time or date picker control. Normally we would do this by setting an allowed date-time range but a more sophisticated case is when we also want to filter out some selection possibilities and allow only specific ones. Imagine an application that provides the end-user with the possibility to create reminders that can only happen in time intervals of 15 minutes:

    3:00 AM, 3:15 AM, 3:30 AM...

    Here we don’t want to prevent the user from selecting values from the whole time-range, but want to make some...

  • Of course the first thing on my mind after returning from a nice long summer vacation is continuing the RadControls for Windows Phone 7 MVVM series of blog posts and adding more examples to our working project of how you can quickly and easily start using our WP7 controls with the MVVM pattern.  While I’m working on something pretty cool for later in the week (hint: it may involve something like this), I wanted to show you how you can pretty quickly get both RadDatePicker and RadTimePicker working with MVVM.

    (( Heads up!  I’ve upgraded this project to utilize the Q2 2011...

  • Graphical user interfaces are rife with popups and messages springing from every direction in order to notify users of important information. The Windows Phone 7 experience is no different and RadWindow is here to provide this functionality. Currently the toolkit for windows phone development provides a Popup control out of the box, so why bother writing a window from scratch? The main reason is that the stock popup is not hardware accelerated, that is, animations on UI elements displayed on it are executed on the UI thread, it doesn’t matter if the animation is a simple double animation, if you...

  • RadDatePicker and RadTimePicker have a lot of basic common functionality. One of the components that provide some of this common functionality is RadPickerBox. It is a very basic control designed to provide an easy way for users to display some content, just like ContentControl:
    RadPickerBox first look

    Also when the content is clicked RadPickerBox displays a popup with more content that makes no sense to occupy the main real estate of the application:
    RadPickerBox opening
    In the context of RadDatePicker and RadTimePicker the popup part is used to produce a value which is then displayed in the content part when the popup is closed. RadPickerBox is not restricted to...