1
vote
3answers
1k views
How to prevent ToolStrip from docking in another ToolStripContainer?
I have an MDI application that allows me to open different types of child windows. I can open multiple (but different) instances of the same type of child window. (Example: I can open 3 instances …
0
votes
Can you recommend low cost automated testing tools for a .NET Winforms application?
Use the Microsoft UI Automation portion of the .NET framework (System.Windows.Automation). It will automatically …
2
votes
Why is DrawString exhibiting unexpected behavior in C# Winforms?
I'm going to guess that it's because you're using Graphics.DrawString() instead of TextRenderer.DrawText(). The former paints text using GDI+ which is sort of crappy and outdated. The latter uses …
0
votes
UserControl as an interface, but visible in the Designer
It almost seems like you want to implement a mediator pattern. Instead of having to deal with each of the bazillion UserControls directly, you'd interact with them through the mediator. Each medi …
2
votes
MVP dependency injection
In WinForms, I prefer a simple approach. Usually you're dealing with a few UserControls on a design surface -- make these your view classes. .NET creates the control hierarchy for you (via Initia …
