Telerik blogs

Latest

For the latest product updates, please visit Release.

  • Mobile

    RadControls For Windows Phone: Using RadPickerBox

    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 :
    November 04, 2010 3 min read
  • Mobile

    RadDateSelector for Windows Phone 7 – Loaded within a standard in-browser Silverlight application.

    Silverlight for Windows Phone 7 is version 3.7 hence a WP7 control should be easily used within a standard Silverlight 4 application. But that’s in theory. The major differences between these two worlds are the so called “Manipulation” events. Each UIElement in WP7’s Silverlight is “enabled” with the following routed events: ManipulationStarted ManipulationDelta ManipulationCompleted  Generally this sequence of events encapsulates one or more touch gestures in a transaction block. The event arguments carry all the information needed to determine what the gesture is and what effect to generate. And of course RadControl for WP7 use these events extensively in order to provide consistent and rich...
    May 27, 2021 3 min read
  • Mobile

    Windows Phone 7 performance - emulator vs physical device

    Part I - App loading time There are a lot of speculations about how different is the execution speed of a Silverlight application when it runs in the WindowsPhone7 emulator and when it runs on the device. Now that we have the RTM devices, we can measure the actual difference! I've prepared 3 very simple WP7 applications: App1 (download). Application that just loads an empty phone application page. App2 (download). Application that loads a phone application page that contains a Pivot control with 2 items, and App3 (download). Application that loads a phone application page that contains a Panorama control with 2 items. I'm measuring the Application initial load time - in this case this is the time between creation...
    May 27, 2021 2 min read
  • Mobile

    RadLoopingPanel – a look inside (or why Telerik’s RadDatePicker is the fastest date picker tool for Windows Phone 7)

    Everything in Windows Phone 7 is Content and Motion. Both of these key Metro parts are combined with a blazing fast performance and unmatched responsiveness throughout the entire OS. Same must be true for all custom applications – no room for performance compromises. And that is why one of the major focuses of the entire development process of RadControls for WP7 is performance. We are even ready to delay some features for a next release for the sake of being feather-light and as fast as possible. As I explained in this blog post, from the very beginning we tried to reuse the...
    May 27, 2021 5 min read
  • Mobile

    Building a Windows Phone 7 control from the ground up - Part Two - the “Date ListBox”

    The next interesting part of building a Windows Phone 7 DatePicker control is the Date ListBox. That is a ListBox which should meet the following requirements: Can display in a human readable manner one of the three Date components: Day, Month and Year Should be “Infinite” – as discussed in my previous post. Should use data virtualization (to be most efficient). As you can see our “Infinite ListBox” project now comes in hand. The last two of the upper requirements are already implemented and all we need to do is to implement a special VirtualizedDataItem<DateTime> that provides the needed information to bind to. For a...
    May 27, 2021 6 min read