Advanced Forum Search Results
-
Please excuse the formatting above.
It seems that CR is not accepted in my message - no idea why... I'll post it again if I can figure out what is going on.
Edit: Manage to sort out formatting in both messages :)
-
Alejandro
I guess the place to start is to determine if your Web Service is actually correctly configured before you try to consume it. The easiest way I know is to right click on your Service.svc file of your Web Service project and choose 'View in Browser'. Your browser should open with a page that has 'You have created a ...
-
My preview is gone as well. Many argue it did not work as well as it should but it was useful to have a look at it every now and then instead of running the app or jumping into Blend.
It's definitely a STEP BACK from SL2 or SL3B. Pity.
-
Have you tried setting some of the new Binding options in SL3:
UpdateSourceTrigger=Default
Just guessing :)
-
The solution I have settled on is to implement the MVVM pattern. The ViewModel is now a completely seperate class that is fully under my control and I can extend it any way I see fit. The drawback of couse is that the proxy class that is created with the Web Service reference now has to be synchronized with my ViewModel when the web ...
-
@Andrea - I have looked at the latest SL2 documentation and the Tilemode property is not mentioned any more for the TileBrush. If you look at the intro page of the TileBrush class you can see the original picture that used to be shown there. There the tilemode is mentioned and shown how it 'would' tile if TileMode was set.
I ...
-
A couple of the Mix 09 sessions did mention the lack of printing support, but it was also said that it is (high) on the priority list.
Have a look at Joe Stegman's or Mike Harsh's sessions - both of them answer questions about printing at the end of their sessions. live.visitmix.com
-
@Andrea - Thanks for the info. As sysrpl says, it does seem like bug - especially given how complete the help file describes the TileMode option. I hope that MS would enhance / fix the class. I'll look into the PixelShader solution but it does feel like I am solving a problem that should not exist. (I understand the ...
-
Does anyone know if there is a way to get the ImageBrush to Tile in SL3. This was 'n feature in SL2 that has not worked like I assume it was planned to work. ImageBrush is derived from TileBrush, which leads me to believe that at some point it is supposed to be tile-able.
I was hoping that it was fixed in SL3 Beta, but ...
-
I'm having the same problem with the constructor. It has to do with the inability to extend the Notification system of auto-gen'd classes when WCF Web Services are consumed that got me to this point. It felt wrong to wire up the instantiated object's own PropertyChangedEventHandler in the first place and now I can't do it from ...