Advanced Forum Search Results
-
Blah. I solved my problem. There is a binding bug in the ListBoxItem template. I fixed it by copying the template out of the DLL and modifying the ContentPresenter to use a TemplateBinding instead of being hard-coded to "Left". It sucks, but I don't know of any other way :(
The full solution is ...
-
You bet! The beauty is that it is REALLY easy...
Start with the shell that you want to display the XAML inside of:<Border x:Name="DynamicHolder">
<Grid x:Name="TemporaryPlaceholder" Width="640" Height="900" />
</Border> Then, when you have the XAML from the ...
-
I am trying to get the content of my ComboBox to stretch to the size of the DropDown. I can't, for the life of me, solve this. What am I missing?
<Grid x:Name="LayoutRoot" Background="White">
<Grid.RowDefinitions>
<RowDefinition Height="30" />
...
-
So, that works... I can't add it to my attached behavior, since I don't know the context that the TextBlock is in... but as long as I reauire that the Width property be set, my attached behavior will work when it gets set. It is up to the user, unfortunately, to determine how to set that width.
-
Lets say I have some XAML like this:
<StackPanel><TextBlock Text="Blah Blah Blah" /></StackPanel>
In this case, the Width is NaN, as I expect, because it grows with the size of the StackPanel.
Unfortunately, ActualWidth does not give me the results I expect. ActualWidth is not bound by the size of the ...
-
I have tried this approach, and it it does not work well at all. It is choppy when it works, and other times, it doesn't work at all. Unfortunately, it is a hack.
Does anyone know if SL3 will support this more directly?
Brian
-
I found this today... a hack to make SL2 and SL3 co-exist on the same dev machine.
http://weblogs.asp.net/dwahlin/archive/2009/03/29/running-silverlight-2-and-silverlight-3-on-the-same-machine.aspx
-
In the keynote, the Olympics guy mentioned that they will support slow motion. Frame rate control is not supported in SL2. Does anyone know how this can be achieved in SL3?
Thanks,
Brian
-
Version 1.0 of our software is being developed against Silverlight 2.0. Version 2.0 will be developed using Sliverlight 3.0. When we upgrade to 3.0, can we do side-by-side development like that? Can you continue targeting SL2 for one version of the product and SL3 for the other as we develop in parallel?
Any thoughts on ...
-
We are using MVVP and it works great for unit testing. This is load testing... a completely different beastie. It is completely independent of any unit testing done on the client.