mierlp Posted September 20, 2014 Posted September 20, 2014 hi I would like to have borderless forms. So i set BorderStyle=None BUT it's still possible to resize the form. I have looked at other solutions on the form but none of them can give me a borderless form without resize possibiliy. Tips..suggestions ?
Sherzod Posted September 22, 2014 Posted September 22, 2014 Hi mierlp. While, try: 1. Form.BorderStyle -> bsNone; 2. To prevent resizing the form, you can use this code: (MainForm - > ClientEvents -> UniEvents -> beforeInit) function window.beforeInit(sender, config) { sender.resizable = false; } [3.] And it is to remove a border: http://forums.unigui.com/index.php?/topic/3992-hideremove-the-form-border/&do=findComment&comment=19269 Best regards. 1
mierlp Posted September 22, 2014 Author Posted September 22, 2014 Hi Delphi Developer, Thanks for the suggestion...this works BUT the second option about remove border works partial, See attachment and de left and bottom side are still visible.Suggestion what causes this?
Sherzod Posted September 23, 2014 Posted September 23, 2014 Hi mierlp.For me, displayed as follows: Which version you are using?Best regards.
ganzqgy Posted September 24, 2014 Posted September 24, 2014 Align don't use "bottom"! Anthors USE:left+right+bottom.
mierlp Posted September 24, 2014 Author Posted September 24, 2014 Latest version of uniGui 0.97.0.1079 Hi mierlp.For me, displayed as follows: noBorder.pngWhich version you are using?Best regards.
Recommended Posts