Current version of Outlook bar (2009.2) doesn´t work with Silverlight 4, how or when will we be able to use a Silverlight 4 compatible version? (we are in a bad need of this for a current project)
Hi Edgar,
What error are you getting? This should all work OK. BTW, are you using VS 2010 RC or Beta 2? And are you using the RC of Silverlight 4?
Thanks
Jason
Hi Jason,
The error I got is "The property ‚System.Windows.Controls.Panel.Childern‘ is set more than once."
I'am using VS 2010 RC and the RC of Silverlight 4.
Thanks for your time,
Regards
Hi Edgar,You can use the XamWebOutlookBar with SL4 by changing the style.I am attaching a sample code, see OutlookBarSL4.txt.Regards,Marin
Hi. here i am again with other problem. I put your code in a user control, so then when I try to draw the user control in other xaml page, or edit in blend i got this error :
KeyNotFoundException: The given key was not present in the dictionary.
at System.Collections.Dictionary`2.get_Item(TKey key)
at System.Windows.ResourceManagerWrapper.GetResourceForUri(Uri xamlUri, Type componentTyp
InnerException:None
I think it is something in the styles ? please, any help is appreciated
thanks
I'm having the same problem with the XamWebTree control. The root level items are being displayed but none of the children. This worked in SL3 but not in SL4. I'm using VS 2010 Release and SL4 Release.
thanks,
ramesh
Hey, i am with some problems with the group container items, we need to show there a XamWebTree, and it works fine when the tree only has one root, but if there we try to put some hierachical data (like a real tree), it doesn't show the children, and in the SL3 project it works fine... i don't know if there is something i am missing in the style in order to show whatever i want in the group container area. here is my code for the xamwebtree, having as base the code you sent:
<igTree:XamWebTree x:Name="dataTree" ItemsSource="{Binding Items}" BorderThickness="0,0,0,0" Background="#FFFFFFFF" HorizontalAlignment="Stretch" SelectionChanged="MyTreeSelectionChanged"> <igTree:XamWebTree.HierarchicalItemTemplate> <ig:HierarchicalDataTemplate ItemsSource="{Binding SubItems}"> <ig:HierarchicalDataTemplate.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <Image x:Name="myImage" Source="{Binding Image}" Margin="2" Height="12" Width="12" VerticalAlignment="Center" /> <TextBlock x:Name="myText" Text="{Binding Name}" VerticalAlignment="Center" /> </StackPanel> </DataTemplate> </ig:HierarchicalDataTemplate.ItemTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <Image x:Name="myImage" Source="{Binding Image}" Margin="2" Height="12" Width="12" VerticalAlignment="Center" /> <TextBlock x:Name="myText" Text="{Binding Name}" VerticalAlignment="Center" /> </StackPanel> </DataTemplate> </ig:HierarchicalDataTemplate> </igTree:XamWebTree.HierarchicalItemTemplate> </igTree:XamWebTree>
thanks.
Paul.
Hi,
it worked!! thank you so much