Advanced Forum Search Results
-
To navigate between pages in silverlight, this blogpost have a good example:
http://silverlight.net/blogs/jesseliberty/archive/2008/05/31/multi-page-applications-in-silverlight.aspx
(Please 'Mark As Answer' if it helps you)
-
Replace Canvas by Grid so that you can place your objects as required and get it scroll also.
<ScrollViewer>
<Grid></Grid>
</ScrollViewer>
-
Hi Rajesh
I think you better do it by placing two different images of triangles, one pointing right, another pointing down.
But if you really want it to be animated here is the sample code:
<UserControl.Resources>
<Storyboard x:Name="Storyboard1">
<DoubleAnimationUsingKeyFrames ...
-
Yes, you can easily fill a gradient in a Border's background through Blend or by Xaml; something like this:
<Border Height="91" Width="126">
<Border.Background>
<LinearGradientBrush EndPoint="0.5,1" ...
-
You can directly place your content inside a scrollviewer then why do you need it in a canvas?
Place your content in ScrollViewer & it will scroll finely.
-
No davidnz, there are no such features in Blend right now:(
There is no intellisense and you have to give the code for color with alpha value like FF0000FF(initial 2 F for 100% alpha, rest for color), not its name.
-
[quote user="IanBlackburn"]
I believe that there are some issues with some png formats. Try converting it to gif or jpg.
[/quote]
Is gif supported by SL2?
-
you can not attach file directly to your post but you can definitely provide a link to that by 'Insert/Edit link' button from the tools provided.
(Please 'Mark as Answer' if it helps you)
-
You can edit control template of togglebutton and add an image there to have a image togglebutton.
(Please 'Mark as Answer' if it helps you)
-
This link may be of help:
http://www.codeplex.com/Silverlight/Wiki/View.aspx?title=Silverlight%20Toolkit%20Overview%20Part%202&referringTitle=Home(Please 'Mark as Answer' if it helps you)