Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
150
Borderless window
posted

How do I turn the borders off and on in my winform app? We are using WinFormManager for .NET framework 2.0.

Parents
No Data
Reply
  • 29085
    Offline posted

    Hello, 

    Are you trying to modify the borders of a particular Infragistics control? If all you would like is to make the form borderless or not you can use the FormBorderStyle enumeration like so by handling the form_load event,

     this.FormBorderStyle = FormBorderStyle.None;            

     this.FormBorderStyle = FormBorderStyle.Sizable;

     

     

     

Children