In writing WinForms Apps in Visual Studio 2010, .NET, I often place a label on a form, set its AutoSize property to false and then drag it across a portion of the form. The label may contain 2 or more paragraphs, which I line up against the left side of the screen. Its Anchor property is set to Left, or Top, Left depending on where I place it on the form.
On my development machine (Windows 10) the label has the appearance that I desire. However, upon deploying it to another machine (whose monitor may have a different resolution) the text in the label is now shifted. A second or even third paragraph in the label no longer displays lined up against the left side of the form, but is spread out, as though I had tabbed the text to a different position.
My question is this: Is there anyway that I can prevent this behavior from occurring when deploying my App to another computer?
How can I get the deployed App to keep the label's text from shifting or spreading out?