The Form has a property FormBorderStyle that decides the kind of border around it. A similar property for a Control is BorderStyle. There is no way to customize these borders directly from the Form Designer. The class System.Windows.Forms.ControlPaint has the methods that come handy when you want to:
Draw the border with a particular color say [...]

