Advanced Forum Search Results
-
Thanks. I tried that. But ran into trouble. My inner collection is dynamic collection. I dont know the compile time size.
Second, in my production code, I have to use template column (different columns can have different templates). How to bind template column to some position in inner collection. I tried using the methods using IValueConverter ...
-
Thanks. This is good justification to start testing things on SL3. Was bit lazy but atleast can start on quirk mode.
Also will try the Loaded event (just in case if we are not yet ready for SL3)
-
I am pasting the entire C# code with XAML.
See the comment on line # 29 in the C# code pasted (after XAML)
----------------------------------------------------------------------------// page.xaml
<UserControl x:Class="ItemsControlBug.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
-
I have created a sample project which demonstrates the problem. In the sample project, I get an error :
Sys.InvalidOperationException: Runtime error 4008 in control 'Xaml1' method : Layout cycle detected. Layout could not complete
Can you let me know how and where I an upload the project?
-
Is there any limit on number of objects that can be bound to itemsource of ItemsControl.
In my code if there are 54 items, the ItemsControl displays nicely on screen
The moment I have 55 items in my collection, the entire Silverlight display disappears. Only HTML elements are visible.
To go more, I have an ItemsControl embedded inside ...
-
More simple
DataGridRow iRow = DataGridRow.GetRowContainingElement(elem);
// elem is the cell or control inside cell
-
Does not work for me.
I have IIS 7 where I have defined mime type for XAP
To test if URL access issues, I tried "http://localhost/ClientBin/Test.xap". The browser (IE7) pops up "Save As" dialog.
In the test page (generated by VS2008), I replace the source URL with above. It does not show anything.
-
Solution to VS build error (Thanks to Casey Stein)
Unfortunately this in not a very helpful error message. I’m embarrassed to say how long it took me to figure out the problem, so I’m not going to tell you. But I will tell you how to solve this if you run into it. Its surprisingly simple:
1. Right-click the XAML file in ...
-
Thanks to Casey Stein
Unfortunately this in not a very helpful error message. I’m embarrassed to say how long it took me to figure out the problem, so I’m not going to tell you. But I will tell you how to solve this if you run into it. Its surprisingly simple:
1. Right-click the XAML file in “Solution Explorer”.
2. ...
-
I fixed the problem by duplicating the WFC service to normal "ASMX" WebService. I created a ASMX service as a wrapper to WFC Service.
This bug is a killer for me and I can't wait for the unknown future version when this issue will be fixed completely.
It took me a bit of pain but at-least my application is working on IE6 and ...