Здравствуйте, Azat, Вы писали:
A>А слоями управлять как? Мне это тоже будет необходимо в дальнейшем.
Вопрос: А какое отношение слои (layers, я правильно понимаю ?) имеют к границе (border-у) TextBox-а.
IMHO они тут вообще не при чем.
А про layering в MSDN написано следующее:
--- cut ---
To layer controls programmatically
Use the BringToFront and SendToBack methods to manipulate the z-order of the controls. For example, if a Textbox control, txtFirstName, is underneath another control and you want to have it on top, use the following code:
' Visual Basic
txtFirstName.BringToFront()
// C#
txtFirstName.BringToFront();
--- cut ---
Это то ?