Есть ли способ работать с исходным кодом Win32 C ++ в визуальной среде? - PullRequest
0 голосов
/ 25 апреля 2019

У меня есть исходный код проекта C ++ "DDF195", я попытался внести некоторые изменения в работу и стиль формы.

Мне нужно знать, как я могу открыть форму в визуальной среде?Я только что нашел этот файл о проекте.

================================================================================
    MICROSOFT FOUNDATION CLASS LIBRARY : DDF195 Project Overview
===============================================================================

The application wizard has created this DDF195 application for 
you.  This application not only demonstrates the basics of using the Microsoft 
Foundation Classes but is also a starting point for writing your application.

This file contains a summary of what you will find in each of the files that
make up your DDF195 application.

DDF195.vcproj
    This is the main project file for VC++ projects generated using an application wizard. 
    It contains information about the version of Visual C++ that generated the file, and 
    information about the platforms, configurations, and project features selected with the
    application wizard.

DDF195.h
    This is the main header file for the application.  It includes other
    project specific headers (including Resource.h) and declares the
    CDDF195 application class.

DDF195.cpp
    This is the main application source file that contains the application
    class CDDF195.

DDF195.rc
    This is a listing of all of the Microsoft Windows resources that the
    program uses.  It includes the icons, bitmaps, and cursors that are stored
    in the RES subdirectory.  This file can be directly edited in Microsoft
    Visual C++. Your project resources are in 1033.

res\DDF195.ico
    This is an icon file, which is used as the application's icon.  This
    icon is included by the main resource file DDF195.rc.

res\DDF195.rc2
    This file contains resources that are not edited by Microsoft 
    Visual C++. You should place all resources not editable by
    the resource editor in this file.

/////////////////////////////////////////////////////////////////////////////

For the main frame window:
    The project includes a standard MFC interface.

FrameWndMainForm.h, FrameWndMainForm
    These files contain the frame class CFrameWndMainForm, which is derived from
    CFrameWnd and controls all SDI frame features.

res\Toolbar.bmp
    This bitmap file is used to create tiled images for the toolbar.
    The initial toolbar and status bar are constructed in the CFrameWndMainForm
    class. Edit this toolbar bitmap using the resource editor, and
    update the IDR_MAINFRAME TOOLBAR array in DDF195.rc to add
    toolbar buttons.

Мне удалось исправить некоторые ошибки, такие как использование Cbrush и пропущенную библиотеку, и я могу запустить проект.Теперь мне нужно внести некоторые изменения в виде формы!В решении я могу найти некоторый файл с суффиксом .h и .cpp, такой же, как frmMain.

Исходный код: https://www.rohde -schwarz.com / product

1 Ответ

0 голосов
/ 25 апреля 2019

Здравствуйте. Через 8 или более часов я могу открыть форму как визуальную.В обозревателе решений> Aim Project> Файл ресурсов> [Имя] .rc> Двойной щелчок Если мы открываем rc-файл как код, мы получаем ошибку, он открывается другим приложением, закройте вкладку весь код в VC и попробуйте снова, появится новое дерево меню, наКаталог диалога мы можем найти и открыть всю форму, а затем для редактирования события в форме мы должны использовать файл cpp. Особая благодарность @Ron и @ drescherjm

...