Telerik blogs

Latest

  • Desktop WinForms

    RadScheduler for WinForms has learned some nice new tricks

    The long awaited Q1 2009 release is finally out and with it comes a greatly improved version of RadScheduler for WinForms. Among the more interesting new features of RadScheduler are: Multi-day view   Notice how there are two date time intervals shown – (13 – 14 March) and (17 – 19 March). Brand new iCalendar import / export functionality which will allow you to make applications with RadScheduler that can exchange appointment data with Outlook. (Dedicated blog post to follow soon.) Now combine that nice iCal import / export functionality with data binding and you have…you guessed it – support for storing recurrence rules for appointments in...
    March 16, 2009
  • Desktop WinForms

    Using RadGauge for WPF in a WinForms application

    In this post, I want to demonstrate the use of the RadGauge for WPF control inside a Windows Forms Application.  Just because you are not developing WPF applications every day does not mean you cannot benefit from what WPF has to offer.  I thought it would be useful to point out that you can use WPF User Controls inside of Windows Forms applications with minimal effort.  This is made possible through the Systems.Windows.Forms.Integration namespace.  More specifically you will be working with a control call "ElementHost" which allows the WPF control to be used in a Windows Form.    So lets get...
    February 27, 2009
  • Desktop WPF

    Getting Started with RadGridView for WPF - Webinar

    Earlier this month, I had the opportunity to present a webinar discussing the RadGridView for WPF.  The control was built from the ground-up to take advantage of the WPF platform and the .NET 3.5 framework.  RadGridView for WPF represents the next generation in flexible data presentation controls you need to build powerful line of business applications. In the webinar, I provided an overview of RadGridView to help you understand all of its capabilities. If you are interested in seeing what was discussed, I welcome you to visit Telerik TV to view the full webinar using the following...
    February 25, 2009
  • Desktop WinForms

    Building WPF-like Interfaces with RadControls for WinForms

    A couple of weeks ago I did a quick review of the white papers we have on RadControls for WinForms and it turned out that they, just like humans, age with time. Although still valid, the white papers were outdated, so we decided to rejuvenate them. The first white paper which we brought up to date is “Building WPF-like Interfaces with RadControls for WinForms." In addition to bringing WPF to the equation (it used to compare our WinForms suite to Windows Vista, which was hype back when the original white paper was published two years ago), it received a new...
    February 20, 2009
  • Desktop WPF

    Transpose or just rows as columns

    A common scenario when displaying tabular data is to flip the axis so your rows becomes columns and vice versa. This can be easily achieved when you know the shape of your data. For example imagine we have a Customer class with 3 properties:  Name, Age and JobCode. Let’s say that we have 5 customers in our data repository. If we want to select just the names we can do something like this: IList<Customer> customers = Customer.GetAll(); var names =     new         {             Customer1 = customers[0].Name,             Customer2 = customers[1].Name,             Customer3 = customers[2].Name,             Customer4 = customers[3].Name,             Customer5 = customers[4].Name         }; Imagine that another Customer is added and suddenly...
    February 16, 2009