Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
Are you looking to make the button icon appear correctly on high DPI displays? If so, you can use the AutoScaleMode property of the form to automatically scale the button and its icon based on the DPI of the display.
Here's an example of how to set the AutoScaleMode property to Dpi in C#:
If setting the AutoScaleMode property to Dpi doesn't work, you can try manually scaling the button icon based on the current DPI. Here's an example of how to do this:
1. In the designer, set the button's Image property to the desired icon.
2. In the form's constructor or Load event handler, calculate the current DPI and scale the button icon accordingly:
This code calculates the DPI scale factor by dividing the current DPI by the standard DPI of 96. It then scales the button icon by multiplying its width and height by the scale factor.
This should ensure that the button icon is scaled correctly based on the current DPI.