Search found 3 matches

by Given
Tue Jul 07, 2009 2:29 pm
Forum: .NET
Topic: WPF Derived Control
Replies: 5
Views: 3508

Re: WPF Derived Control

Hi Alonso, Thanks for the reply. 1. Do you have any time estimation when this will be fixed and how (patch/new version)? 2. I have some other critical problems with the WPF version. This is the one I'm working on: In the WinForm version, I've added a scroll bar in case the user zoom in, this was qui...
by Given
Tue Jul 07, 2009 11:53 am
Forum: .NET
Topic: WPF Derived Control
Replies: 5
Views: 3508

Re: WPF Derived Control

Hi, Thanks for replying. It's actually very simple: Create a WPF Application: public class ChartDemo : TChart { } public Window1() { InitializeComponent(); } private void button1_Click(object sender, RoutedEventArgs e) { ChartDemo chartDemo = new ChartDemo(); } I've attached a sample project, just i...
by Given
Tue Jul 07, 2009 9:02 am
Forum: .NET
Topic: WPF Derived Control
Replies: 5
Views: 3508

WPF Derived Control

Hi, I'm trying to use TeeChart as derived control in a WPF application. I've created a simple class: public class GraphBasicControl : TChart {} and when I try to use it (create an instance): GraphBasicControl test = new GraphBasicControl(); I'm getting an exception: " The component 'GraphExtendedPH'...