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
관련 자료 : UI Automation Support (UI Accessibility) | Telerik UI for WPF