Advanced Forum Search Results
-
Yeah, so you cannot access them unless you are running from a web server... it wont work from a local file system. :)
-
Hey,
I take it your images are not part of the XAP package? If so, when running locally without a web server, Silverlight applications cannot use any kind of web request... including images.
Cheers,
Jordan.
-
Hey,
Check out http://silverzine.com/tutorials/splash-screens-and-loaders-in-silverlight/
Cheers,
Jordan.
-
Hey There, The simplest way would probably be to create a style property on the user control that contains your items control, then set that new property from the control that hosts *your* new user control..
XAML for the user control which hosts the ItemsControl (this control is called SilverlightControl1 in my ...
-
Hey,
If I were going to tackle this problem, I'd be using a CustomControl based on ContentControl, then use TemplateParts to load out the particular sub controls you are interested in - which you can then expose as properties.
-
Hey,
I posted a sample project a while ago on codeplex which will help you out.
http://eventr.codeplex.com/
Check out the demo, you can see the overlays in action.
Cheers,
Jordan.
-
Hey,
GetTemplateChild is a protected method on the Control base class (which button is derived from). You can only access it if you create a new class and base it on button:
public class Class1 : Button
{
public override void ...
-
Hey,
Tiling is possible in Silverlight 3 using the new WritableBitmap.
Check out my post on the subject here http://blog.webjak.net/2009/06/13/silverlight-3-split-image-in-to-tiles-and-show-in-3d-space (has code and online demo in Silverlight 3 Mix 09 release).
HTH,
Jordan.
-
Hey,
You'll probably need to create a new Point first and set it that way.
Point p = new Point(.5, .5);
item.RenderTransformOrigin = p;
HTH,
Jordan.
-
Hye there,
Did you know you can connect to Blend with Visual Studio to debug a probem? Just go to Tools -> Attach to process in VS and find Blend in the list. Then in Blend, close and open the XAML page that is causing the problem (but don't close blend, just the open tab)... then any issues in your code will cause a break ...