Advanced Forum Search Results
-
Here is a sample
http://cid-bc6e963bc5870ac7.skydrive.live.com/self.aspx/Public/OnMouseOverState.zip
If you disable the "Hold In" property it works. If the "Hold In" property is enabled, you have to double click the button to get the MouseOver to work.
-
I have a Grid with two Borders inside. The first is default. The second has a radial gradient and its opacity is 0. When a Mouse Over State is triggered the opacity goes to 100. This works, however, when the property "Hold In" is selected this breaks the Mouse Over. I have noticed if I double-click the Mouse Over State ...
-
I have spent all day looking for a real world Silverlight 3, MVVM, using LINQTOSQL dbml through a WCF Enabled Service as a Model example.
Any information would be extremely helpful :)
-
Here is an example. Public Shared ReadOnly VehicleProperty As DependencyProperty = DependencyProperty.Register("Vehicle", GetType(IVehicle), GetType(MyClass), New Windows.PropertyMetadata(Nothing))
Public Property Vehicle() As IVehicle
Get
Return GetValue(VehicleProperty)
End Get
Set(ByVal ...
-
Composition. Say I created a dependency property "Vehicle" and want to set its type to IVehicle.
-
I have declared a dependency property and want to set its value to an interface. I am geting a parser error. Is what I am trying to acomplish possible in Silverlight 2? If so, how would I go about doing it?
Thanks :)
-
I was aware of the scroll viewer option but wanted a more natural solution. Thanks for replying.
-
Hello,
How do I see WCF errors? In my completed event I see e.error. This is always nothing. I explicitly threw a new exception in my server side code. When my client completed event is fired the e.error is nothing still. How does this work? I can't find any information on this and it is important to me. How do I throw an exception on ...
-
I have seen many posts on scaling your application like a viewbox. This is not what I want to acomplish. I want to set my silverlight application to 100% width and height in my default.aspx. I want my browser to show scroll bars when my silverlight application grows past the bounds of the browser window.
There has to be a way to do ...
-
Thanks for your reply. That is exactly what I am doing now. I was just hoping for a faster solution without duplicate code. Now that I know someone else is doing it I feel better.
Thanks