实例介绍
【实例简介】
非常简单的一个实例,可在此基础上开发自己的作品。 CEF功能强大 但使用起来比 Web Browser 复杂的多,而且它的官方例子 cefsimple 和 cefclient 都是使用 Win32 API 开发的,这给大家学习使用 CEF 带来了很大不便,很多人更需要一个使用 MFC 开发的例子,所以上传这个方便大家,vs2012及更高版本可编译运行。
【实例截图】
【核心代码】
MFCApplication2
└── MFCApplication2
├── bin
│ ├── cef_100_percent.pak
│ ├── cef_200_percent.pak
│ ├── cef_extensions.pak
│ ├── cef.pak
│ ├── d3dcompiler_43.dll
│ ├── d3dcompiler_47.dll
│ ├── debug.log
│ ├── devtools_resources.pak
│ ├── icudtl.dat
│ ├── libcef.dll
│ ├── libEGL.dll
│ ├── libGLESv2.dll
│ ├── locales
│ │ ├── am.pak
│ │ ├── ar.pak
│ │ ├── bg.pak
│ │ ├── bn.pak
│ │ ├── ca.pak
│ │ ├── cs.pak
│ │ ├── da.pak
│ │ ├── de.pak
│ │ ├── el.pak
│ │ ├── en-GB.pak
│ │ ├── en-US.pak
│ │ ├── es-419.pak
│ │ ├── es.pak
│ │ ├── et.pak
│ │ ├── fa.pak
│ │ ├── fil.pak
│ │ ├── fi.pak
│ │ ├── fr.pak
│ │ ├── gu.pak
│ │ ├── he.pak
│ │ ├── hi.pak
│ │ ├── hr.pak
│ │ ├── hu.pak
│ │ ├── id.pak
│ │ ├── it.pak
│ │ ├── ja.pak
│ │ ├── kn.pak
│ │ ├── ko.pak
│ │ ├── lt.pak
│ │ ├── lv.pak
│ │ ├── ml.pak
│ │ ├── mr.pak
│ │ ├── ms.pak
│ │ ├── nb.pak
│ │ ├── nl.pak
│ │ ├── pl.pak
│ │ ├── pt-BR.pak
│ │ ├── pt-PT.pak
│ │ ├── ro.pak
│ │ ├── ru.pak
│ │ ├── sk.pak
│ │ ├── sl.pak
│ │ ├── sr.pak
│ │ ├── sv.pak
│ │ ├── sw.pak
│ │ ├── ta.pak
│ │ ├── te.pak
│ │ ├── th.pak
│ │ ├── tr.pak
│ │ ├── uk.pak
│ │ ├── vi.pak
│ │ ├── zh-CN.pak
│ │ └── zh-TW.pak
│ ├── natives_blob.bin
│ ├── snapshot_blob.bin
│ └── widevinecdmadapter.dll
├── lib
│ ├── libcef_dll_wrapper.lib
│ └── libcef.lib
├── MFCApplication2
│ ├── CefBrowserApp.cpp
│ ├── CefBrowserApp.h
│ ├── CefBrowserHandler.cpp
│ ├── CefBrowserHandler.h
│ ├── include
│ │ ├── base
│ │ │ ├── cef_atomicops.h
│ │ │ ├── cef_atomic_ref_count.h
│ │ │ ├── cef_basictypes.h
│ │ │ ├── cef_bind.h
│ │ │ ├── cef_bind_helpers.h
│ │ │ ├── cef_build.h
│ │ │ ├── cef_callback_forward.h
│ │ │ ├── cef_callback.h
│ │ │ ├── cef_callback_helpers.h
│ │ │ ├── cef_callback_list.h
│ │ │ ├── cef_cancelable_callback.h
│ │ │ ├── cef_lock.h
│ │ │ ├── cef_logging.h
│ │ │ ├── cef_macros.h
│ │ │ ├── cef_move.h
│ │ │ ├── cef_platform_thread.h
│ │ │ ├── cef_ref_counted.h
│ │ │ ├── cef_scoped_ptr.h
│ │ │ ├── cef_string16.h
│ │ │ ├── cef_template_util.h
│ │ │ ├── cef_thread_checker.h
│ │ │ ├── cef_thread_collision_warner.h
│ │ │ ├── cef_trace_event.h
│ │ │ ├── cef_tuple.h
│ │ │ ├── cef_weak_ptr.h
│ │ │ └── internal
│ │ │ ├── cef_atomicops_x86_msvc.h
│ │ │ ├── cef_bind_internal.h
│ │ │ ├── cef_bind_internal_win.h
│ │ │ ├── cef_callback_internal.h
│ │ │ ├── cef_lock_impl.h
│ │ │ ├── cef_raw_scoped_refptr_mismatch_checker.h
│ │ │ └── cef_thread_checker_impl.h
│ │ ├── capi
│ │ │ ├── cef_app_capi.h
│ │ │ ├── cef_auth_callback_capi.h
│ │ │ ├── cef_base_capi.h
│ │ │ ├── cef_browser_capi.h
│ │ │ ├── cef_browser_process_handler_capi.h
│ │ │ ├── cef_callback_capi.h
│ │ │ ├── cef_client_capi.h
│ │ │ ├── cef_command_line_capi.h
│ │ │ ├── cef_context_menu_handler_capi.h
│ │ │ ├── cef_cookie_capi.h
│ │ │ ├── cef_dialog_handler_capi.h
│ │ │ ├── cef_display_handler_capi.h
│ │ │ ├── cef_dom_capi.h
│ │ │ ├── cef_download_handler_capi.h
│ │ │ ├── cef_download_item_capi.h
│ │ │ ├── cef_drag_data_capi.h
│ │ │ ├── cef_drag_handler_capi.h
│ │ │ ├── cef_find_handler_capi.h
│ │ │ ├── cef_focus_handler_capi.h
│ │ │ ├── cef_frame_capi.h
│ │ │ ├── cef_geolocation_capi.h
│ │ │ ├── cef_geolocation_handler_capi.h
│ │ │ ├── cef_image_capi.h
│ │ │ ├── cef_jsdialog_handler_capi.h
│ │ │ ├── cef_keyboard_handler_capi.h
│ │ │ ├── cef_life_span_handler_capi.h
│ │ │ ├── cef_load_handler_capi.h
│ │ │ ├── cef_menu_model_capi.h
│ │ │ ├── cef_menu_model_delegate_capi.h
│ │ │ ├── cef_navigation_entry_capi.h
│ │ │ ├── cef_origin_whitelist_capi.h
│ │ │ ├── cef_parser_capi.h
│ │ │ ├── cef_path_util_capi.h
│ │ │ ├── cef_print_handler_capi.h
│ │ │ ├── cef_print_settings_capi.h
│ │ │ ├── cef_process_message_capi.h
│ │ │ ├── cef_process_util_capi.h
│ │ │ ├── cef_render_handler_capi.h
│ │ │ ├── cef_render_process_handler_capi.h
│ │ │ ├── cef_request_capi.h
│ │ │ ├── cef_request_context_capi.h
│ │ │ ├── cef_request_context_handler_capi.h
│ │ │ ├── cef_request_handler_capi.h
│ │ │ ├── cef_resource_bundle_capi.h
│ │ │ ├── cef_resource_bundle_handler_capi.h
│ │ │ ├── cef_resource_handler_capi.h
│ │ │ ├── cef_response_capi.h
│ │ │ ├── cef_response_filter_capi.h
│ │ │ ├── cef_scheme_capi.h
│ │ │ ├── cef_ssl_info_capi.h
│ │ │ ├── cef_stream_capi.h
│ │ │ ├── cef_string_visitor_capi.h
│ │ │ ├── cef_task_capi.h
│ │ │ ├── cef_trace_capi.h
│ │ │ ├── cef_urlrequest_capi.h
│ │ │ ├── cef_v8_capi.h
│ │ │ ├── cef_values_capi.h
│ │ │ ├── cef_web_plugin_capi.h
│ │ │ ├── cef_xml_reader_capi.h
│ │ │ ├── cef_zip_reader_capi.h
│ │ │ └── views
│ │ │ ├── cef_box_layout_capi.h
│ │ │ ├── cef_browser_view_capi.h
│ │ │ ├── cef_browser_view_delegate_capi.h
│ │ │ ├── cef_button_capi.h
│ │ │ ├── cef_button_delegate_capi.h
│ │ │ ├── cef_display_capi.h
│ │ │ ├── cef_fill_layout_capi.h
│ │ │ ├── cef_label_button_capi.h
│ │ │ ├── cef_layout_capi.h
│ │ │ ├── cef_menu_button_capi.h
│ │ │ ├── cef_menu_button_delegate_capi.h
│ │ │ ├── cef_panel_capi.h
│ │ │ ├── cef_panel_delegate_capi.h
│ │ │ ├── cef_scroll_view_capi.h
│ │ │ ├── cef_textfield_capi.h
│ │ │ ├── cef_textfield_delegate_capi.h
│ │ │ ├── cef_view_capi.h
│ │ │ ├── cef_view_delegate_capi.h
│ │ │ ├── cef_window_capi.h
│ │ │ └── cef_window_delegate_capi.h
│ │ ├── cef_app.h
│ │ ├── cef_auth_callback.h
│ │ ├── cef_base.h
│ │ ├── cef_browser.h
│ │ ├── cef_browser_process_handler.h
│ │ ├── cef_callback.h
│ │ ├── cef_client.h
│ │ ├── cef_command_line.h
│ │ ├── cef_context_menu_handler.h
│ │ ├── cef_cookie.h
│ │ ├── cef_dialog_handler.h
│ │ ├── cef_display_handler.h
│ │ ├── cef_dom.h
│ │ ├── cef_download_handler.h
│ │ ├── cef_download_item.h
│ │ ├── cef_drag_data.h
│ │ ├── cef_drag_handler.h
│ │ ├── cef_find_handler.h
│ │ ├── cef_focus_handler.h
│ │ ├── cef_frame.h
│ │ ├── cef_geolocation.h
│ │ ├── cef_geolocation_handler.h
│ │ ├── cef_image.h
│ │ ├── cef_jsdialog_handler.h
│ │ ├── cef_keyboard_handler.h
│ │ ├── cef_life_span_handler.h
│ │ ├── cef_load_handler.h
│ │ ├── cef_menu_model_delegate.h
│ │ ├── cef_menu_model.h
│ │ ├── cef_navigation_entry.h
│ │ ├── cef_origin_whitelist.h
│ │ ├── cef_pack_resources.h
│ │ ├── cef_pack_strings.h
│ │ ├── cef_parser.h
│ │ ├── cef_path_util.h
│ │ ├── cef_print_handler.h
│ │ ├── cef_print_settings.h
│ │ ├── cef_process_message.h
│ │ ├── cef_process_util.h
│ │ ├── cef_render_handler.h
│ │ ├── cef_render_process_handler.h
│ │ ├── cef_request_context.h
│ │ ├── cef_request_context_handler.h
│ │ ├── cef_request.h
│ │ ├── cef_request_handler.h
│ │ ├── cef_resource_bundle.h
│ │ ├── cef_resource_bundle_handler.h
│ │ ├── cef_resource_handler.h
│ │ ├── cef_response_filter.h
│ │ ├── cef_response.h
│ │ ├── cef_sandbox_win.h
│ │ ├── cef_scheme.h
│ │ ├── cef_ssl_info.h
│ │ ├── cef_stream.h
│ │ ├── cef_string_visitor.h
│ │ ├── cef_task.h
│ │ ├── cef_trace.h
│ │ ├── cef_urlrequest.h
│ │ ├── cef_v8.h
│ │ ├── cef_values.h
│ │ ├── cef_version.h
│ │ ├── cef_web_plugin.h
│ │ ├── cef_xml_reader.h
│ │ ├── cef_zip_reader.h
│ │ ├── internal
│ │ │ ├── cef_export.h
│ │ │ ├── cef_logging_internal.h
│ │ │ ├── cef_ptr.h
│ │ │ ├── cef_string.h
│ │ │ ├── cef_string_list.h
│ │ │ ├── cef_string_map.h
│ │ │ ├── cef_string_multimap.h
│ │ │ ├── cef_string_types.h
│ │ │ ├── cef_string_wrappers.h
│ │ │ ├── cef_thread_internal.h
│ │ │ ├── cef_time.h
│ │ │ ├── cef_trace_event_internal.h
│ │ │ ├── cef_types.h
│ │ │ ├── cef_types_win.h
│ │ │ ├── cef_types_wrappers.h
│ │ │ └── cef_win.h
│ │ ├── views
│ │ │ ├── cef_box_layout.h
│ │ │ ├── cef_browser_view_delegate.h
│ │ │ ├── cef_browser_view.h
│ │ │ ├── cef_button_delegate.h
│ │ │ ├── cef_button.h
│ │ │ ├── cef_display.h
│ │ │ ├── cef_fill_layout.h
│ │ │ ├── cef_label_button.h
│ │ │ ├── cef_layout.h
│ │ │ ├── cef_menu_button_delegate.h
│ │ │ ├── cef_menu_button.h
│ │ │ ├── cef_panel_delegate.h
│ │ │ ├── cef_panel.h
│ │ │ ├── cef_scroll_view.h
│ │ │ ├── cef_textfield_delegate.h
│ │ │ ├── cef_textfield.h
│ │ │ ├── cef_view_delegate.h
│ │ │ ├── cef_view.h
│ │ │ ├── cef_window_delegate.h
│ │ │ └── cef_window.h
│ │ └── wrapper
│ │ ├── cef_byte_read_handler.h
│ │ ├── cef_closure_task.h
│ │ ├── cef_helpers.h
│ │ ├── cef_message_router.h
│ │ ├── cef_resource_manager.h
│ │ ├── cef_stream_resource_handler.h
│ │ ├── cef_xml_object.h
│ │ └── cef_zip_archive.h
│ ├── MFCApplication2.aps
│ ├── MFCApplication2.cpp
│ ├── MFCApplication2Dlg.cpp
│ ├── MFCApplication2Dlg.h
│ ├── MFCApplication2.h
│ ├── MFCApplication2.rc
│ ├── MFCApplication2.vcxproj
│ ├── MFCApplication2.vcxproj.filters
│ ├── MFCApplication2.vcxproj.user
│ ├── ReadMe.txt
│ ├── Release
│ │ ├── MFCApplication2.Build.CppClean.log
│ │ └── MFCApplication2.log
│ ├── res
│ │ ├── MFCApplication2.ico
│ │ └── MFCApplication2.rc2
│ ├── Resource.h
│ ├── stdafx.cpp
│ ├── stdafx.h
│ └── targetver.h
├── MFCApplication2.sln
└── MFCApplication2.v11.suo
15 directories, 314 files
非常简单的一个实例,可在此基础上开发自己的作品。 CEF功能强大 但使用起来比 Web Browser 复杂的多,而且它的官方例子 cefsimple 和 cefclient 都是使用 Win32 API 开发的,这给大家学习使用 CEF 带来了很大不便,很多人更需要一个使用 MFC 开发的例子,所以上传这个方便大家,vs2012及更高版本可编译运行。
【实例截图】
【核心代码】
MFCApplication2
└── MFCApplication2
├── bin
│ ├── cef_100_percent.pak
│ ├── cef_200_percent.pak
│ ├── cef_extensions.pak
│ ├── cef.pak
│ ├── d3dcompiler_43.dll
│ ├── d3dcompiler_47.dll
│ ├── debug.log
│ ├── devtools_resources.pak
│ ├── icudtl.dat
│ ├── libcef.dll
│ ├── libEGL.dll
│ ├── libGLESv2.dll
│ ├── locales
│ │ ├── am.pak
│ │ ├── ar.pak
│ │ ├── bg.pak
│ │ ├── bn.pak
│ │ ├── ca.pak
│ │ ├── cs.pak
│ │ ├── da.pak
│ │ ├── de.pak
│ │ ├── el.pak
│ │ ├── en-GB.pak
│ │ ├── en-US.pak
│ │ ├── es-419.pak
│ │ ├── es.pak
│ │ ├── et.pak
│ │ ├── fa.pak
│ │ ├── fil.pak
│ │ ├── fi.pak
│ │ ├── fr.pak
│ │ ├── gu.pak
│ │ ├── he.pak
│ │ ├── hi.pak
│ │ ├── hr.pak
│ │ ├── hu.pak
│ │ ├── id.pak
│ │ ├── it.pak
│ │ ├── ja.pak
│ │ ├── kn.pak
│ │ ├── ko.pak
│ │ ├── lt.pak
│ │ ├── lv.pak
│ │ ├── ml.pak
│ │ ├── mr.pak
│ │ ├── ms.pak
│ │ ├── nb.pak
│ │ ├── nl.pak
│ │ ├── pl.pak
│ │ ├── pt-BR.pak
│ │ ├── pt-PT.pak
│ │ ├── ro.pak
│ │ ├── ru.pak
│ │ ├── sk.pak
│ │ ├── sl.pak
│ │ ├── sr.pak
│ │ ├── sv.pak
│ │ ├── sw.pak
│ │ ├── ta.pak
│ │ ├── te.pak
│ │ ├── th.pak
│ │ ├── tr.pak
│ │ ├── uk.pak
│ │ ├── vi.pak
│ │ ├── zh-CN.pak
│ │ └── zh-TW.pak
│ ├── natives_blob.bin
│ ├── snapshot_blob.bin
│ └── widevinecdmadapter.dll
├── lib
│ ├── libcef_dll_wrapper.lib
│ └── libcef.lib
├── MFCApplication2
│ ├── CefBrowserApp.cpp
│ ├── CefBrowserApp.h
│ ├── CefBrowserHandler.cpp
│ ├── CefBrowserHandler.h
│ ├── include
│ │ ├── base
│ │ │ ├── cef_atomicops.h
│ │ │ ├── cef_atomic_ref_count.h
│ │ │ ├── cef_basictypes.h
│ │ │ ├── cef_bind.h
│ │ │ ├── cef_bind_helpers.h
│ │ │ ├── cef_build.h
│ │ │ ├── cef_callback_forward.h
│ │ │ ├── cef_callback.h
│ │ │ ├── cef_callback_helpers.h
│ │ │ ├── cef_callback_list.h
│ │ │ ├── cef_cancelable_callback.h
│ │ │ ├── cef_lock.h
│ │ │ ├── cef_logging.h
│ │ │ ├── cef_macros.h
│ │ │ ├── cef_move.h
│ │ │ ├── cef_platform_thread.h
│ │ │ ├── cef_ref_counted.h
│ │ │ ├── cef_scoped_ptr.h
│ │ │ ├── cef_string16.h
│ │ │ ├── cef_template_util.h
│ │ │ ├── cef_thread_checker.h
│ │ │ ├── cef_thread_collision_warner.h
│ │ │ ├── cef_trace_event.h
│ │ │ ├── cef_tuple.h
│ │ │ ├── cef_weak_ptr.h
│ │ │ └── internal
│ │ │ ├── cef_atomicops_x86_msvc.h
│ │ │ ├── cef_bind_internal.h
│ │ │ ├── cef_bind_internal_win.h
│ │ │ ├── cef_callback_internal.h
│ │ │ ├── cef_lock_impl.h
│ │ │ ├── cef_raw_scoped_refptr_mismatch_checker.h
│ │ │ └── cef_thread_checker_impl.h
│ │ ├── capi
│ │ │ ├── cef_app_capi.h
│ │ │ ├── cef_auth_callback_capi.h
│ │ │ ├── cef_base_capi.h
│ │ │ ├── cef_browser_capi.h
│ │ │ ├── cef_browser_process_handler_capi.h
│ │ │ ├── cef_callback_capi.h
│ │ │ ├── cef_client_capi.h
│ │ │ ├── cef_command_line_capi.h
│ │ │ ├── cef_context_menu_handler_capi.h
│ │ │ ├── cef_cookie_capi.h
│ │ │ ├── cef_dialog_handler_capi.h
│ │ │ ├── cef_display_handler_capi.h
│ │ │ ├── cef_dom_capi.h
│ │ │ ├── cef_download_handler_capi.h
│ │ │ ├── cef_download_item_capi.h
│ │ │ ├── cef_drag_data_capi.h
│ │ │ ├── cef_drag_handler_capi.h
│ │ │ ├── cef_find_handler_capi.h
│ │ │ ├── cef_focus_handler_capi.h
│ │ │ ├── cef_frame_capi.h
│ │ │ ├── cef_geolocation_capi.h
│ │ │ ├── cef_geolocation_handler_capi.h
│ │ │ ├── cef_image_capi.h
│ │ │ ├── cef_jsdialog_handler_capi.h
│ │ │ ├── cef_keyboard_handler_capi.h
│ │ │ ├── cef_life_span_handler_capi.h
│ │ │ ├── cef_load_handler_capi.h
│ │ │ ├── cef_menu_model_capi.h
│ │ │ ├── cef_menu_model_delegate_capi.h
│ │ │ ├── cef_navigation_entry_capi.h
│ │ │ ├── cef_origin_whitelist_capi.h
│ │ │ ├── cef_parser_capi.h
│ │ │ ├── cef_path_util_capi.h
│ │ │ ├── cef_print_handler_capi.h
│ │ │ ├── cef_print_settings_capi.h
│ │ │ ├── cef_process_message_capi.h
│ │ │ ├── cef_process_util_capi.h
│ │ │ ├── cef_render_handler_capi.h
│ │ │ ├── cef_render_process_handler_capi.h
│ │ │ ├── cef_request_capi.h
│ │ │ ├── cef_request_context_capi.h
│ │ │ ├── cef_request_context_handler_capi.h
│ │ │ ├── cef_request_handler_capi.h
│ │ │ ├── cef_resource_bundle_capi.h
│ │ │ ├── cef_resource_bundle_handler_capi.h
│ │ │ ├── cef_resource_handler_capi.h
│ │ │ ├── cef_response_capi.h
│ │ │ ├── cef_response_filter_capi.h
│ │ │ ├── cef_scheme_capi.h
│ │ │ ├── cef_ssl_info_capi.h
│ │ │ ├── cef_stream_capi.h
│ │ │ ├── cef_string_visitor_capi.h
│ │ │ ├── cef_task_capi.h
│ │ │ ├── cef_trace_capi.h
│ │ │ ├── cef_urlrequest_capi.h
│ │ │ ├── cef_v8_capi.h
│ │ │ ├── cef_values_capi.h
│ │ │ ├── cef_web_plugin_capi.h
│ │ │ ├── cef_xml_reader_capi.h
│ │ │ ├── cef_zip_reader_capi.h
│ │ │ └── views
│ │ │ ├── cef_box_layout_capi.h
│ │ │ ├── cef_browser_view_capi.h
│ │ │ ├── cef_browser_view_delegate_capi.h
│ │ │ ├── cef_button_capi.h
│ │ │ ├── cef_button_delegate_capi.h
│ │ │ ├── cef_display_capi.h
│ │ │ ├── cef_fill_layout_capi.h
│ │ │ ├── cef_label_button_capi.h
│ │ │ ├── cef_layout_capi.h
│ │ │ ├── cef_menu_button_capi.h
│ │ │ ├── cef_menu_button_delegate_capi.h
│ │ │ ├── cef_panel_capi.h
│ │ │ ├── cef_panel_delegate_capi.h
│ │ │ ├── cef_scroll_view_capi.h
│ │ │ ├── cef_textfield_capi.h
│ │ │ ├── cef_textfield_delegate_capi.h
│ │ │ ├── cef_view_capi.h
│ │ │ ├── cef_view_delegate_capi.h
│ │ │ ├── cef_window_capi.h
│ │ │ └── cef_window_delegate_capi.h
│ │ ├── cef_app.h
│ │ ├── cef_auth_callback.h
│ │ ├── cef_base.h
│ │ ├── cef_browser.h
│ │ ├── cef_browser_process_handler.h
│ │ ├── cef_callback.h
│ │ ├── cef_client.h
│ │ ├── cef_command_line.h
│ │ ├── cef_context_menu_handler.h
│ │ ├── cef_cookie.h
│ │ ├── cef_dialog_handler.h
│ │ ├── cef_display_handler.h
│ │ ├── cef_dom.h
│ │ ├── cef_download_handler.h
│ │ ├── cef_download_item.h
│ │ ├── cef_drag_data.h
│ │ ├── cef_drag_handler.h
│ │ ├── cef_find_handler.h
│ │ ├── cef_focus_handler.h
│ │ ├── cef_frame.h
│ │ ├── cef_geolocation.h
│ │ ├── cef_geolocation_handler.h
│ │ ├── cef_image.h
│ │ ├── cef_jsdialog_handler.h
│ │ ├── cef_keyboard_handler.h
│ │ ├── cef_life_span_handler.h
│ │ ├── cef_load_handler.h
│ │ ├── cef_menu_model_delegate.h
│ │ ├── cef_menu_model.h
│ │ ├── cef_navigation_entry.h
│ │ ├── cef_origin_whitelist.h
│ │ ├── cef_pack_resources.h
│ │ ├── cef_pack_strings.h
│ │ ├── cef_parser.h
│ │ ├── cef_path_util.h
│ │ ├── cef_print_handler.h
│ │ ├── cef_print_settings.h
│ │ ├── cef_process_message.h
│ │ ├── cef_process_util.h
│ │ ├── cef_render_handler.h
│ │ ├── cef_render_process_handler.h
│ │ ├── cef_request_context.h
│ │ ├── cef_request_context_handler.h
│ │ ├── cef_request.h
│ │ ├── cef_request_handler.h
│ │ ├── cef_resource_bundle.h
│ │ ├── cef_resource_bundle_handler.h
│ │ ├── cef_resource_handler.h
│ │ ├── cef_response_filter.h
│ │ ├── cef_response.h
│ │ ├── cef_sandbox_win.h
│ │ ├── cef_scheme.h
│ │ ├── cef_ssl_info.h
│ │ ├── cef_stream.h
│ │ ├── cef_string_visitor.h
│ │ ├── cef_task.h
│ │ ├── cef_trace.h
│ │ ├── cef_urlrequest.h
│ │ ├── cef_v8.h
│ │ ├── cef_values.h
│ │ ├── cef_version.h
│ │ ├── cef_web_plugin.h
│ │ ├── cef_xml_reader.h
│ │ ├── cef_zip_reader.h
│ │ ├── internal
│ │ │ ├── cef_export.h
│ │ │ ├── cef_logging_internal.h
│ │ │ ├── cef_ptr.h
│ │ │ ├── cef_string.h
│ │ │ ├── cef_string_list.h
│ │ │ ├── cef_string_map.h
│ │ │ ├── cef_string_multimap.h
│ │ │ ├── cef_string_types.h
│ │ │ ├── cef_string_wrappers.h
│ │ │ ├── cef_thread_internal.h
│ │ │ ├── cef_time.h
│ │ │ ├── cef_trace_event_internal.h
│ │ │ ├── cef_types.h
│ │ │ ├── cef_types_win.h
│ │ │ ├── cef_types_wrappers.h
│ │ │ └── cef_win.h
│ │ ├── views
│ │ │ ├── cef_box_layout.h
│ │ │ ├── cef_browser_view_delegate.h
│ │ │ ├── cef_browser_view.h
│ │ │ ├── cef_button_delegate.h
│ │ │ ├── cef_button.h
│ │ │ ├── cef_display.h
│ │ │ ├── cef_fill_layout.h
│ │ │ ├── cef_label_button.h
│ │ │ ├── cef_layout.h
│ │ │ ├── cef_menu_button_delegate.h
│ │ │ ├── cef_menu_button.h
│ │ │ ├── cef_panel_delegate.h
│ │ │ ├── cef_panel.h
│ │ │ ├── cef_scroll_view.h
│ │ │ ├── cef_textfield_delegate.h
│ │ │ ├── cef_textfield.h
│ │ │ ├── cef_view_delegate.h
│ │ │ ├── cef_view.h
│ │ │ ├── cef_window_delegate.h
│ │ │ └── cef_window.h
│ │ └── wrapper
│ │ ├── cef_byte_read_handler.h
│ │ ├── cef_closure_task.h
│ │ ├── cef_helpers.h
│ │ ├── cef_message_router.h
│ │ ├── cef_resource_manager.h
│ │ ├── cef_stream_resource_handler.h
│ │ ├── cef_xml_object.h
│ │ └── cef_zip_archive.h
│ ├── MFCApplication2.aps
│ ├── MFCApplication2.cpp
│ ├── MFCApplication2Dlg.cpp
│ ├── MFCApplication2Dlg.h
│ ├── MFCApplication2.h
│ ├── MFCApplication2.rc
│ ├── MFCApplication2.vcxproj
│ ├── MFCApplication2.vcxproj.filters
│ ├── MFCApplication2.vcxproj.user
│ ├── ReadMe.txt
│ ├── Release
│ │ ├── MFCApplication2.Build.CppClean.log
│ │ └── MFCApplication2.log
│ ├── res
│ │ ├── MFCApplication2.ico
│ │ └── MFCApplication2.rc2
│ ├── Resource.h
│ ├── stdafx.cpp
│ ├── stdafx.h
│ └── targetver.h
├── MFCApplication2.sln
└── MFCApplication2.v11.suo
15 directories, 314 files
标签:
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论