writes about F#, WPF, async, and the like.
I was working on a project that required calculating nice ranges for chart axes. I found a useful discussion here.
Here is what I used in C# and so far it is working adequately.
1: 2: 3: 4: 5: 6: 7: |
|
I need to sign a ClickOnce manifest using mage.exe
.
The certificate is in the Windows Certificate Store.
How do I do that?
How does one expose an F# record in a WPF view model? My F# code uses immutable records. But, I need to bind those records to a WPF user interface in a view model. What is the right way to do that?
Read more...I was recently debugging a ClickOnce deployment. I needed a way to quickly add and remove the *.deploy
extension from all the files in a deployment folder. Well, not all the files. The *.manifest
file is treated differently.
I was working on a project that required calculating nice ranges for chart axes. I found a useful discussion here.
Here is what I used in C# and so far it is working adequately.
Read more...I needed a menu docked to the bottom of an application's window. Docking to the bottom of the window is no problem. However, it did not work well, because by default, WPF menus drop down. I needed it to drop up.
Read more...