Advanced Forum Search Results
-
bah, meanwhile check the following thread : http://silverlight.net/forums/p/11168/71172.aspx#71172
I posted my example there while I wait for the new post.
-
It's not exactly the same but it should help you get started Rams : Make sure to add the following also : xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows"
This is a button template that we use in our Xceed Uploader for .NET samples... you can check it out here: ...
-
I posted a nice example but I received a message saying that my content had to be reviewed before it was posted, that was about 7 hours ago... A few people have been asking me for one, just waiting for the administrators to post it ... :)
-
I have received a few request to update my button found in this post : http://silverlight.net/forums/p/11168/70637.aspx and make it work in Silverlight Beta 2. Well, here is an updated version. This button we use in the Xceed Uploader for .NET resource center : http://xceed.com/Upload_Silverlight_Intro.html
Make sure to add the ...
-
Hey Rams, the example was made for Beta 1 and the way storyboards and state works has changed in beta 2. I'll try to put an updated version as soon as I find the time !
-
I made a template example that you can use that should answer most of your questions :
http://silverlight.net/forums/p/11168/41472.aspx
1. The animation are wired by using the right key, for example, a mouse over storyboard has to be called : "MouseOver State".
2. I don't think it's possible at the moment, resource ...
-
Yes, you need to set the itemsPannel property to a panel that supports horizontal layout :
<ListBox>
<ListBoxItem>
<Image Source="item1.jpg" />
...
-
If you know for sure that the content is indeed a string, you can do :
ListBoxItem item = listBox.SelectedItem as ListBoxItem;
item.Content.ToString... will work. However, since you are working with a Content property, why not use a ContentPresenter instead of a textBox. This way you'll always be safe no matter the content of the ...
-
Here's an example I made real quick to get you started.
<Style TargetType="Button"
x:Key="styleA">
<Setter ...
-
Looks like someone was nice enough to write one : http://silverlight.net/forums/t/10756.aspx :)