Windows 10 no Surface Pro 4 - Não é possível redimensionar as barras de menus

0

Eu tentei alterar as configurações de exibição na tela Configurações de exibição, bem como nas configurações avançadas. No entanto, algumas barras de menu ficam muito pequenas. O exemplo abaixo, TreeForm, é de um executável jar, mas tenho um problema semelhante com programas como o RStudio. Como posso redimensionar essas barras de menu?

    
por Adam_G 02.12.2016 / 16:44

1 resposta

2

Os aplicativos devem chamar a nova função de API do Win32 EnableNonClientDpiScaling para dimensionar os elementos da interface do usuário .

Non-client scaling for top-level windows is not enabled by default, you must call this API to enable it. Once you do, there is no way to disable it. Enabling non-client scaling means that all the areas drawn by the system for the window will automatically scale in response to DPI changes on the window. That includes areas like the caption bar, the scrollbars, and the menu bar. You want to call EnableNonClientDpiScaling when you want the operating system to be responsible for rendering these areas automatically at the correct size based on the API of the monitor.

Peça aos desenvolvedores da ferramenta para incluírem isso em uma atualização.

    
por 02.12.2016 / 17:07