Home > Software design >  what is the development tool of this GUI
what is the development tool of this GUI

Time:12-01

I have a light/simple app (Winodws GUI), I want to know what is the development tool of this app? most of the app's files are as bellow.

I am newer to app development, I expected to know like "this app is developed by WPF&C#, Electron&Js, Qt&C " this message. I am not sure if this message could be idenfied from the files shown

btw, there is an .exe with them

enter image description here

CodePudding user response:

It is impossible to say exactly because these libraries are pretty common.

msvcp140 implies that the base is C developed with Visual Studio 2015 or later.

d3d* means something there is using Direct3D as well (could be Chromium). EGL/GLES is more graphics stuff, probably used by Chromium.

The presence of Chrome* means it is either using Chromium to display some web content or the entire app is HTML/Javascript based like Electron.

You should inspect the .exe in a hex editor. And a strings tool.

Use something like WinSpy to inspect the main application window. What is the class name?

  • Related