Advanced Forum Search Results
-
Still same or any update ?
-
[quote user="Jelmer850i"]Thats a pitty, my webserver doesnt run wcf's ok[/quote]
Asmx will also work fine.
Other ( Not-so-common) web services might work also but you need to write lots of plumbing code..parse the result yourself etc.
-
Hi Dhev,
Do you want something that looks like a hyperlink but function like a button? You still can use HyperlinkButton class and handle the logic in clicked event as you want.
Silverlight does not support html elements directly so you can not use "a" tag directly.
-
Excellent work. Thanks for sharing. I will use this for my next application. :)
-
Yh I do understand it. I just suggested one way of avoiding this scenario. Currently I don't have any direct solution of the question.
-
I don't know VB so my answer will be in C# ...
When you use select new {c.col1,c.col2} you are creating an anonymous class that you can not return from a method.
What you can do is to create an Instance of the existing class and have properties set only which you need. ( Assuming your class or database table is Customer )
public ...
-
Instead of putting navigation logic on individual pages...
You should have a Master Page where you put your navigation buttons and one frame to hold other pages (including home).
Now by default you will set the frame source to home page. ( In your case Mainpage.xaml is your home page. MainPage will not hold any frame. Instead about ...
-
[quote user="HarshalSilverlight"]I still don't understand why I can not change the background color of a button to solid red.[/quote]
This is because inside a button there are many layers. You can see this if you right click the button and select "Edit template => "Edit a copy" in expression blend. ...
-
Can you upload a sample version [ Where the problem is reproduced] of your application and give it to us? Then we can help you more easily.
-
Hi Navin,
Yes having image directly inside button will work. Because basically it sets the image as its content. JPG or PNG both should work. There is no limit of image size till it is clearly visible to human eye.