My coworkers setup a nice way to get the fault messages from our service layer all the way back to the client’s service proxy layer. This is what I needed to work on this afternoon. Through a series of trials and errors I finally figured this out. The confusion was how I was looking at the exception in the quick watch viewer. It appeared as though the EventArgs from the service call had somehow magically been cast back to FaultException(), not FaultException<T>. I drilled into the EventArgs ......
I recently was given an assignment to create a UX where a user could use the up and down arrow keys, as well as the tab and enter keys to move through a Silverlight datagrid that is going be used as part of a high throughput data entry UI. And to be honest, I’ve not trapped key codes since I coded JavaScript a few years ago. Although the frameworks I’m using made it easy, it wasn’t without some trial and error. The other thing that bothered me was that the customer tossed this into the use case as ......