http://bugs.winehq.org/show_bug.cgi?id=59919 --- Comment #1 from matthias.klaey@gmx.ch <matthias.klaey@gmx.ch> --- Note the dependency to the following `App.config` tag: <System.Windows.Forms.ApplicationConfigurationSection> <add key="DpiAwareness" value="PerMonitorV2" /> </System.Windows.Forms.ApplicationConfigurationSection> But even if `DpiAwareness` cannot fully be implemented, at least the `Control.DeviceDpi` property could be added, throwing e.g. a `NotSupportedException`. This would allow an application to do a runtime check like drafted below, rather than having to apply a #if (!MONO) compilation conditional. if (!EnvironmentIsMono) { var dpi = Control.DeviceDpi; ... -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.