flaviowmf Posted October 5, 2016 Posted October 5, 2016 Olá. Há a possibilidade de dar zoom no browser automaticamente de acordo com o tamanho do form principal minha aplicação ? Hello.There is the possibility to zoom in the browser automatically according to the main form size of my application? Quote
Sherzod Posted October 6, 2016 Posted October 6, 2016 Hi, And what if you will use MainForm.WindowState property for this ?!: MainForm.WindowState -> wsMaximized Best regards. Quote
flaviowmf Posted October 6, 2016 Author Posted October 6, 2016 Obrigado pela resposta. Mas na verdade eu não gostaria/poderia trocar o tamanho do form, gostaria somente de dar o zoom de acordo com o seu tamanho. Há essa possibilidade ? Thanks for the answer.But in fact I would not / could change the form size, would only give the zoom according to their size.There is this possibility? Quote
leandroavila74 Posted October 6, 2016 Posted October 6, 2016 Obrigado pela resposta. Mas na verdade eu não gostaria/poderia trocar o tamanho do form, gostaria somente de dar o zoom de acordo com o seu tamanho. Há essa possibilidade ? Thanks for the answer. But in fact I would not / could change the form size, would only give the zoom according to their size. There is this possibility? To control the zoom on a smartphone add on In UniServerModule.custommeta help something <meta content='True' name='HandheldFriendly' /> <meta content='width=device-width; initial-scale=1.0; maximum-scale=2.0; user-scalable=1;' name='viewport' /> MainForm.Script if (document.body) { document.body.addEventListener('touchmove',function(event){ event.preventDefault(); },false); } Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.