Telerik blogs
  • Release

    Check out all the new technologies you can use with OpenAccess ORM Q2 2012

    Q2 2012 of Telerik OpenAccess ORM is about to be released soon and we are eager to share what we have achieved for the last few months. As we always strive to keep up with the latest technologies available, we will start by presenting the support for: Visual Studio 11 Beta OpenAccess is compatible with the beta version of the new Visual Studio since the end of March - an internal build from March 29th is available even now. However, Q2 will be the first official release with a full functional support. MS SQL Server 2012 LocalDB As the commercial editions of SQL Server 2012 are...
  • Mobile

    GDI+ in a Windows 8 C# Metro Application – Experimenting for Fun

    It’s been about two months since Windows 8 Consumer Preview is out and we, at Telerik, have been enjoying the new framework and all the features it offers. One of the aspects we've been exploring is the immediate mode rendering and what options the new runtime offers. XAML is in the core of WinRT (Windows Runtime) and it offers rich presentation capabilities but sometimes, especially on devices with limited hardware resources, we need to achieve even better performance to get up to the “fast and fluid” Metro applications' standard. As I explained in this blog post, Direct2D is undoubtedly the best choice...
  • Mobile

    Metro, Direct2D and XAML – Burst of Performance in Windows 8

    Now that Windows 8 Consumer Preview is out we are eager to explore the new framework and the features it offers. While part of it is the good old XAML, there are plenty of other unique features, one of them being the DirectX integration at XAML level. While XAML is a great technology and offers literally unlimited features regarding layout and UI richness, sometimes there are cases where we need to push the framework beyond its limits in order to achieve highly-performing components with responsive and fluid user interaction. Although in most cases writing efficient algorithms and using the proper data structures...
  • Release

    Telerik XAML Controls Q1 2012 SP1

    The Q1 2012 Service Packs for Telerik XAML controls (Silverlight, WPF and Windows Phone) have been released.  You will find many improvements and fixes in the service packs, which you can download now under Your Account.  Be sure to check the updated Silverlight and WPF Trials This new service pack brings a number of improvements and fixes.  You now have the option to disable the Telerik StyleManager and to style controls using implicit styles (i.e., Style without the x:Key attribute). There are a number of advantages to using implicit styles, including: Custom themes are easier Basing styles on themes is easier Assemblies are smaller Improved Blend support For more on using...
    March 27, 2012
  • Desktop WPF

    Getting Started with GanttView - part 1

    Programming with the new GanttView control As many of you already know with Q1 2012 we introduced a RadGanttView for Silverlight and WPF - a control designed with MVVM-friendly API. In this blog post we will set-up a sample project with RadGanttView to get you started. First, to add RadGanttView to a new or existing application we need to add references to the following assemblies: Telerik.Windows.Controls Telerik.Windows.Controls.GanttView Telerik.Windows.Scheduling.Core Now, let’s add the telerik namespace: xmlns:telerik=http://schemas.telerik.com/2008/xaml/presentation Add add a sample definition of the control: <telerik:RadGanttView/> Here is a screenshot of what you should see after running the project:   Now, we will create a data source in our ViewModel and bind...