Advanced Forum Search Results
-
public partial class Marker : UserControl
{
#region private variables
private bool _mouseButtonIsDown;
private Point _offsetPoint;
private UIElement ...
-
This issue is also being discussed here: http://silverlight.net/forums/p/22637/121042.aspx
-
Robert,
Another method you can use and still keep your container hierarchy as it is, is to leave the grid Opacity at 1 and set the opacity on the grid's background solid brush Alpha to 0.5.
This can also work if you're using a background gradient brush; just set each gradient stop's Alpha to 0.5.
your example rewritten should ...
-
Hi,
I was having the same problem. Two of my usercontrols did not want to render in their containing page and was I getting the same 'cannot create an instance of [x]' exception.
I'd discovered that some controls inside these two usercontrols were using the same Style (Style="{StaticResource ...
-
I'm having the same issue but with the RTW version.
Using Reflector, I see that the method IncreaseQuotaTo() internally calls a security method that always returns false, which looks like it eventually will cause IncreaseQuotaTo to fail.
Did a bit more research and the call to IncreaseQuotaTo() must be called from an event handler (it ...