Hello, I found on the website the xamDockManager control for Silverlight. I have been looking for a control like this for a while now. I downloaded the beta files, but is this something that we can start using now or is this still in early beta?
Thanks
Hi,
The XamDock that was shipped as CTP which mean it can be used as Preview only (beta).
HTH,
Can you tell me what namespace that xamDockManger belong to?
clr-namespace:Infragistics.Controls.Layouts;assembly=InfragisticsSL4.Controls.Layouts.XamDockManager.v10.3 ?
You should just be able to use the namespace URL:
xmlns:ig="http://schemas.infragistics.com/xaml"
All of our Silverlight controls are in this single namespace so you generally only need to add the one to your XAML to access any of the controls included in assemblies referenced by your project. Plus using the URI syntax removes the hard coded version numbers from your XAML files so if you upgrade the namesapces won't have to change.
Devin
I did use namespace xmlns:ig=http://schemas.infragistics.com/xaml but i have error the type ig:XamDockManager was not found.
Please help
Hmmm, ok. That is weird, but its possible we did not add the namespace attributes to the CTP bits.
The long-hand version should be this:
xmlns:dock="clr-namespace:Infragistics.Controls.Layouts;assembly=InfragisticsSL4.Controls.Layouts.XamDockManager.v10.3"