Steven Jeuris
Steven Jeuris
When there is an interface which defines an event within the assembly targeted by the `InitializeEventHandlers` aspect, compilation fails. > Unhandled exception (4.0.34.0, 32 bit, CLR 4.5, Release): System.NullReferenceException: Object...
https://connect.microsoft.com/VisualStudio/feedback/details/1150208/binding-to-attached-properties-with-generic-owner-type
I'm extending the support for creating dependency properties through the dependency property factory (DP factory), including allowing to set `AffectsMeasure`, etc .. in `FrameworkElementMetaData`. However, since the DP factory requires...
There are some problems with template binding not working since the WPFControl aspect only initializes the dependency property factory at instance runtime. This was done in order to support generics,...
Sometimes binding properties within Xaml, created by the aspects version of the dependency property factory (WpfControl) throws the following exception: _"A 'Binding' cannot be set on the 'Standard' property of...
The constructor is not called for objects which are deserialized. This means event handlers are not initialized for deserialized objects. I slightly improved on the current solution by also initializing...
When trying to call `SendMessageTimeout` on a 64-bit PixelSense Surface, I received a runtime exception that the return type could not be marshalled. I managed to resolve it by changing...
When using `CommandBinding` in a style setter an exception containing the following message is thrown: _"The only supported MarkupExtension types are DynamicResourceExtension and BindingBase or derived types."_ Example code: ```...
When trying to bind to commands of which the method definition contains an optional parameter an exception is currently thrown. The command binding logic probably just needs to take optional...
An InvalidOperationException occurred when the process thread could not be found within the listed threads of the process. How can this occur? Could the ID change in between the calls?