Archives
-
Synchronizing control properties with the parent control properties in WPF
Sometimes you need synchronize the properties of a control with the properties of the parent control, in order to accomplish this you can use a binding by element name. In the example below you can see how to make the size of a control equal to its parent control by using binding:
-
A WPF wrapper around Windows Form NotifyIcon
Because WPF do not have a Notify Icon control, I decided implement a WPF control that wraps the Windows Form control. It only covers the basic functionality, but I believe that it is enough for most scenarios. Enjoy it !
-
Unhandled exceptions in children threads
When an exception is thrown in a thread that is not the main thread, it can be catch with the event UnhandledException of the AppDomain class. However attaching this event can not avoid the application to crash.
-
Publish a ClickOnce deploy with Visual Studio and assemblies not referenced
When you build a ClickOnce deploy Visual Studio do not get assemblies not referenced in the project or any other dependent project. Basically the problem are assemblies located in other folders than the project folder.
-
New InProcess transport for WCF
A new NullTransport for WCF was implemented, you can found the bits in http://www.codeproject.com/WCF/NullTransportForWCF.asp.
-
Code Task Scheduler
I publish an early alpha version of the Code Task Scheduler, that allows schedule managed code. The bits are in Codeplex http://www.codeplex.com/cts.