Aug 10, 2012 at 6:38 PM
Edited Aug 10, 2012 at 6:40 PM
|
Hi Ado,
first i want to mention againt thanks for all the effort you've put into this very usefull library!
So i've just try the new fix but i have some bad news, it still doesn't work :( Same issue where selecting the content of the tab doesn't set the activeContent.
I could try to put together a small project to replicate the problem.
Also in this new version, i've encounter a few new bugs:
When i try to use the "New Vertical Tab Group" context menu option to put the LayoutDocument Tab side by side i got the following errors:
LayoutGroup.cs
===============
@Line 62 --> Crash because element is null
Proposed changed:
if (element !=null && element.Parent != this)
NOTE: Possibly need to change line 49 with the same test
After i did the change, the crash occured in:
LayoutDocumentPane.cs
===============
@Line 76 --> Crash because Children[0] is null
Proposed changed:
if (_selectedIndex >= 0 && _selectedIndex < Children.Count && Children[_selectedIndex] !=null)
NOTE: Possibly need to change line 69 with the same test
Finally once i did the modification, the error was thrown at:
LayoutItem.cs
===============
@Line 862--> Crash because LayoutElement is null
I stopped there to right this message.
Although undocking and redocking a LayoutDocument side-by-side the other document was working fine.
So i will try to see if i can put together a small example to replicate my problem, unless you know for sure what is going on?
Thanks!
|