본문 바로가기

프로그래밍/C#, WPF, Winform

ComboBox를 클릭하면 Telerik WPF Chart와 모든 UI 컨트롤이 느려질 경우





ComboBox를 클릭하면 Telerik WPF Chart와 모든 UI 컨트롤이 느려는 경우가 있다.

 

App.xaml.cs 파일에 아래 코드 한줄만 넣으면 해결된다.

 

1
2
3
4
5
6
7
8
9
10
using Telerik.Windows.Automation.Peers;  
 
public partial class App : Application 
    public App() 
    { 
        AutomationManager.AutomationMode = AutomationMode.Disabled; 
        this.InitializeComponent(); 
    } 
cs

 

관련 이슈 : RadCartesianChart Performance goes down when clicking combobox in UI for WPF Chart - Telerik Forums

 

RadCartesianChart Performance goes down when clicking combobox in UI for WPF Chart - Telerik Forums

Join a community of over 2.6m developers to have your questions answered on RadCartesianChart Performance goes down when clicking combobox of UI for WPF Chart. New here? Start with our free trials.

www.telerik.com

관련 자료 : UI Automation Support (UI Accessibility) | Telerik UI for WPF

 

UI Automation Support (UI Accessibility) | Telerik UI for WPF

Common Information Telerik UI for WPF provides built-in support for Microsoft UI Automation – the accessibility framework for Microsoft Windows. UI Automation support is implemented through a tree of peer classes that derive from FrameworkElementAutomati

docs.telerik.com