Advanced Forum Search Results
-
I think your on to something here, I did not have the "assembly=MyAssembly" part included in the xmlns, so that's probably why it worked outside the template but not inside.
I have worked around this problem and changed my design, so it's no longer an issue, but I think this should solve the problem if I were to go back to the ...
-
Hi,
Not sure if I'm doing anything wrong here, but whenever I try to use a custom panel inside an ItemsPanelTemplate, parts or the entire SL2B1 client layout seems to break down.
For example, if I add the code bellow to an XAML page, the layout of all other items fails. An example of failure is that text blocks in list boxes write ...
-
I've sent you an email, but I could not attach anything to it using this forums email contact form.
I'll prepare a test application to make it easier to reproduce.
Cheers
-
Hi,
I'd like to add that the ListBox is suffering from the same performance problems as well. Adding items to a list and then assigning it to the ListBox.ItemsSource is all fairly fast, but when the layout/repaint is done it takes ages.
Will there be any support for virtualization? Such as VirtualizingStackPanel etc? I think that would help ...
-
Hi,
This one is a bit tricky to explain and possibly to reproduce, but basicly, take a ListBox and add a data template to it, similar to this (I used Scott's Digg data template as a starting point),
<ListBox Grid.Column="4" Grid.Row="1" x:Name="SongsListBox" ...
-
Hi,
Using SL2B1 with C# (and IE7), the Border control will throw an exception if the Child property is set to the same object twice.
Example:
UserControl A;
UserControl B;
myBorder.Child = A; //OK
myBorder.Child = B; //OK
myBorder.Child = B; //Exception
An exception of type 'System.ArgumentException' occurred in ...
-
Hi,
What I don't get is how to add the crossdomain.xml or clientaccesspolicy.xml file to the root of the domain where the service is hosted if I'm using a self hosted WCF service (using ServiceHost)? Is it at all posible to allow cross domain calls to self hosted services? Seems like a big restriction if it can't be done.
Got ...