Completed
Last Updated: 25 Apr 2017 11:21 by ADMIN
ADMIN
Hristo
Created on: 14 Mar 2016 16:27
Category: UI for WinForms
Type: Feature Request
1
ADD. RadControl - implement functionality for an application-wide setting of UseCompatibleTextRendering

		
1 comment
ADMIN
Ralitsa
Posted on: 25 Apr 2017 11:21
You can set the UseCompatibleTextRenderingDefaultValue property to false in order to change the default value of compatible text rendering for all RadControls. It is recommended to set it before InitializeComponent(). The provided example below demonstrates how to achieve it: 

public partial class Form1 : Form
{
    public Form1()
    {
        RadControl.UseCompatibleTextRenderingDefaultValue = false;  
        InitializeComponent();                    
    }
}