Ensuring that application is independent of users' screen resolution
问题 Is there any easy way to run an application created in C# on Visual Studio 2005 on any different PC, regardless of its screen resolution? 回答1: Screen resolution? Windows Forms in .NET 2.0 has some mechanisms for dealing with different DPI and it has a better layout system than in .NET 1.1. In general, use layout panels like FlowLayoutPanel, TableLayoutPanel, etc instead of fixing your controls at X/Y coordinates and you'll have a much easier time dealing with different window sizes. If you