Browse by Tags
All Tags »
C Sharp (RSS)
I wanted to make an AboutBox that is as easy to use as the one that comes with Winforms. But, I also wanted to make use of some of the cool new UI capabilities in WPF and make it look a little snazzier than the default WinForms one… Below are the two
Read More...
Attachment(s): WpfAboutBox v0.1.zip
I've been testing out some of the different possibilities in WPF with a sample AboutBox -- every program has one and they're not overly complex (so they make a good starting point). Also, for those of you WinForms-turned-WPF devs out there, you've probably
Read More...
It’s pretty easy to set up an XmlDataProvider as a resource in your WPF application. This lets you databind controls to XML data islands pretty easily. The following XAML puts an XML data island into my application. < Application.Resources > <
Read More...
I’m continuing to work through learning more about WPF and XAML. I was trying a simple dialog and noticed that it didn’t look like typical Windows dialogs… for example, all WPF windows have an icon, but if you look at dialogs in most apps (and what WinForms
Read More...
Attachment(s): DialogWindow.cs
WPF doesn't have a built in LinkLabel control as you'd find in WinForms. But, I have found a couple of neat ways of doing one in WPF. The first was creating a new WPF control that derives from Label and then adds functionality to have it behave like a
Read More...
I was just reading over some blogs and ran across a couple of interesting topics on usage and perf on an Immutable Collection in the .NET runtime. Turns out to have been written by an old friend and collegue - Jared . He's always written about some interesting
Read More...
Been thinking about and looking at unit testing a lot recently. And, one of the items that came up was how do you test for expected exceptions to make sure that they're being thrown correctly. So, I wrote of few tests that did just that and noticed how
Read More...
There's been lots of WinForms and C# related content posted recently, and I have a list of things that I had meant to blog about, but never got around to. I'm going to post of list of some of these, so I can clear my backlog, keep track of them, and let
Read More...
Chris Jackson has two posts about Gel Buttons that he's created for WinForms. They look really good and implement design-time support, so they're good examples on how to do that as well. Creating Gel Buttons With Window Forms: Part 1 Creating Gel Buttons
Read More...
Vivek has a project where he's written the interop layer to access the Windows shell's 'Open With' Dialog -- the one where you can associate a file extension with the application that should open it. It's a dialog that you may find useful in one of your
Read More...
Here's a very cool sample that uses Managed DirectX to support input from the new XBox 360 controller in a simple Windows Form in C#. Paul Stubbs : MDX: XBOX 360 Controller Windows Forms Application [via Greg ]
Read More...
I just ran into a problem doing this and found a great post about how to work around it. It appears that the MenuStrip doesn't support radio button items be default, but you can create a radio button effect by using the ToolStripMenuItem.Checked property
Read More...
Earlier in the week, I posted about a project that implemented system tray support for .NET applications. That seems like a good project, but it's a bit complicated. I was just trying to add this functionality to an app that I've been playing around with,
Read More...
I posted earlier about using the My namespace in VS 2005 to create a single instance application in C#. You can also do a similar thing to use the My functionality for displaying a splash screen when your .NET application is loading. Here is Tyler's post
Read More...
I saw these two posts on Greg's blogs, and they look very intriguing: FileHelpers and Screen Grabbing . These two libraries appear to be very useful - who doesn't need simplified file read/write functionality. And, the screen capture one is cool because
Read More...