c++ - Use QT on Visual Studio 2013 -
i have project(c++/dirent.h/opencv/tesseract) on visual studio 2013 (professional update 2) , want uses gui on project, , have questions:
i can create gui on qt creator (drag , drop) , bind vs2013 project?
qt visual studio add-in have drag , drop?
is there other way create interfaces visual studio.
i'm not sure mean "bind", can create
.ui
file in qt designer can incorporated c++ project in visual studio. there multiple ways of doing - can load .ui file dynamically code using quiloader, or can convert c++ code statically using uic tool , use generated code in project.the qt add-on visual studio automates of described above. can have .ui files in vs project , when double click them, load qt designer can edit gui using drag/drop tools. when build project, automatically run uic , moc tools project built correctly.
yes, indicated marco a.'s comment, can use mfc create native c++ gui windows based. framework out of date , not recommended new projects. can use windows forms create gui in c++/cli (or other .net language) , have call native c++ code.
Comments
Post a Comment