Do Qt apps look and feel native under Windows?

后端 未结 5 1377
执念已碎
执念已碎 2021-01-03 19:53

I’m about to port one of my Mac applications to Windows. The Mac app uses Apple’s native Cocoa/Appkit frameworks for the UI. The UI is Obj-C code, and the core app functiona

5条回答
  •  佛祖请我去吃肉
    2021-01-03 20:10

    No they do NOT. It's close, but the controls look non-native. What people mean is that it uses the Win32 API for rendering the controls similar to how Windows renders the native controls so the performance should be comparible.

    Only Windows specific frameworks like .NET Windows Forms use the actual native Win32 controls for common UI elements.

提交回复
热议问题