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
5answers
121 views
Why are signed assemblies slow to load?
I encountered a strange problem this week that I can't explain: I switched my application to use the signed version of some third party assemblies (Xceed Grid and some of their other components) an …
0
votes
Linux/C++ programmer to C#/Windows programmer
Get yourself a copy of Resharper. It's probably the single best productivity tool out there for straight up coding.
…
5
votes
What are the benefits of maintaining a “clean” list of using directives in C#?
Less noise.
Clear expectation of what types are used ("My UI layer depends upon System.Net. Wow, why?")
Cleaner references: if you have the minimal set of using statements, …
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
C# Plugin to use its own app.config
You're working against the architecture of app.config. You get one app.config file per executable (EXE, not DLL). The executable launches, creates its AppDomain, and then loads MyApp.exe.config. …
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 …
0
votes
