Telerik blogs

Latest

For the latest product updates, please visit Release.

  • Desktop WinForms

    RadPageView – next generation WinForms navigation control

    As the new Q2 2010 release is approaching, we wanted to share some more information about our brand new control RadPageView, meant to supersede existing RadTabStrip and RadPanelBar. “Why yet another tab-strip?” someone would ask. Several are the major reasons that made us create this new control, namely: Extensibility, scalability and ease of use. With the new semantic that lies behind RadPageView, it is very easy to create custom views over a collection of pages. Well thought light element tree, which reduces both memory footprint and User Interaction response time and allows for easy and intuitive styling. Myriad of new features in...
  • Desktop WinForms

    Styling Cells in RadGridView for WinForms

    In RadGridView you have to handle the CellFormatting event when you want to customize the look and feel of grid cells. This is so because RadGridView uses UI virtualization. It creates elements only for cells that are currently visible - when scrolling they are reused. Of course, it will be much easier if we could access the cell directly and set its visual properties without an event. In our next release (Q2 2010) this will be possible. By using the Style property you can set the desired background color or change the font size. Here is a sample: this.radGridView1.Rows[5].Cells["Name"].Style.BackColor = Color.Red; this.radGridView1.Rows[5].Cells["Name"].Style.Font = new Font(SystemFonts.DialogFont, FontStyle.Italic);   All...
  • Desktop WinForms

    Flexible data conversion with RadGridView for WinForms vNEXT

    One of the new features that will come with the next version of RadGridView is the new data conversion layer. In our daily work we have often got into troubles in visualizing and formatting concrete types as other types. Sometimes the data source is not compatible with the bind target. Hence, you need to create a facade that converts the data to desired type. Let’s say that you bind the grid to a source that is incompatible with the columns that you want to show, for example a GridViewCheckBoxColumn for char field instead of GridViewTextBoxColumn. How can you accomplish that? The new version of RadGridView will...
  • Desktop WinForms

    Introduction to RadScheduler for WinForms Webinar

    Earlier today, I presented a webinar about RadScheduler for WinForms. I hope everyone who attended enjoyed learning a few things about RadScheduler. If you weren't able to attend, don't worry I've posted a link to a recording of the webinar on Telerik TV below. I've also made the example projects I used in the webinar available for download. Introduction to RadScheduler for WinForms RadScheduler for WinForms is a highly customizable appointment presentation component that offers rich Outlook-style functionality. Through the use of this component, you can easily add rich scheduling UI to any Windows Forms application. In this webinar, ...
    April 15, 2010
  • Desktop WinForms

    Adding Custom Fields to RadScheduler for WinForms Appointments

    When using RadScheduler for WinForms, it will almost always need to be customized in some way. This could come in the form of custom dialogs, context menus, or even custom appointments. In this blog entry, I am going to explain the steps required to add a custom field to RadScheduler. Click here to download the source code and follow along... Adding Custom Fields to Appointments In this example, a custom field for Email will be added to the Appointment class being used by RadScheduler. The process of accomplishing this involves five simple steps. Step 1: Add a Custom Field to the Data Source In order to display ...
    April 02, 2010