TAILIEUCHUNG - Visual C++ and MFC Fundamentals programming phần 3

Để làm cho kinh nghiệm lập trình của bạn một chút nhanh hơn và hiệu quả, khuôn khổ cung cấp nhiều tính năng khác cho mỗi lớp học được sử dụng trong một ứng dụng. Các ứng dụng: Các chương trình chúng tôi sẽ tạo ra trong các lớp học sử dụng cuốn sách của thư viện Microsoft Tổ chức lớp học (MFC). Các lớp MFC được tạo ra là các thư viện khác nhau được gọi là DLL. | Visual C and MFC Fundamentals Chapter 5 The Document View Architecture r -Untitled File 19. Close it using its System Close button and return to MSVC SDI Improvements SDI Improvements The Application To make your programming experience a little faster and efficient the framework provides many other features for each class used in an application. The Application The programs we will create in this book use classes of the Microsoft Foundation Classes MFC library. MFC classes are created is various libraries called DLLs. In order to use MFC objects in your application as opposed to non-MFC objects you must let the compiler know. This is done by specifying that you want to Use MFC In A Shared DLL as we have done so far. Additionally if you want your windows to have a 3-D appearance call the Enable3dControls method. If you do not want the 3-D appearance call the Enable3dControlsStatic method. The best way to deal with this is to ask the compiler to check if you had allowed using MFC in a shared DLL or not and then tell the compiler which of these two functions to execute. This is done using a ifdef preprocessor in your InitInstance method. Here is an example include class CSimpleFrame public CFrameWnd . public CSimpleFrame Create the window s frame Create NULL Windows Application class CSimpleApp public CWinApp . public BOOL InitInstance FunctionX Inc. 143 Chapter 5 The Document View Architecture Visual C and MFC Fundamentals BOOL CSimpleApp InitInstance ifdef _AFXDLL Enable3dControls else Enable3dControlsStatic endif CSimpleFrame Tester new CSimpleFrame m_pMainWnd Tester Tester- ShowWindow SW_SHOW Tester- UpdateWindow return TRUE CSimpleApp theApp To provide your application the ability to create a new document the CWinApp class provides the OnFileNew method. Its syntax is afx_msg void OnFileNew To use this method create a menu item identified as ID_FILE_NEW. You should also create a prompt for it so the menu item can be added to the string table. .

TỪ KHÓA LIÊN QUAN
TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.