I'm using the XamPivotGrid and its performance is a huge problem. In order to workaround this issue i want to know if there's a way to avoid that the user clicks in multiple cells(expanding it) one after another.
It is possible to disable the interaction while the previous expansion results are not rendered?
Regards,
Ângelo.
Sure, it was a mistake!
-----------------------------
InitializeComponent(); this.ColumnSpan = 5; this.RowSpan = 5; this.isBusyTimer = new DispatcherTimer(); this.isBusyTimer.Interval = new TimeSpan(0, 0, 0, 0, 500); this.isBusyTimer.Tick += new EventHandler(this.IsBusyTimer_Tick);
Once i had a similar problem in the version 10.3. The answer was on the styles. This time i'm not understending.
Could you paste your code in Word first and then copy it again and paste it to the post text box.
Just this (some properties initialization and a timer)
this
.ColumnSpan = 5;
Hello,
Could you provide us the initialization code you have if any?
Plamen.
Hi and thanks,
I'd already performed all the changes. The API changs are just a few. But when i run the aplication i alwyas get the exception: System.Windows.Markup.XamlParseException: Element is already the child of another element. [Line: 0 Position: 0]
Is there any other think that i should have in mind whem performing this update?