实例介绍
CEF3的2016整合版本,output包含了所有所需的必要dll,并更新了tabcontrol,增加关闭按钮;重新写了右键菜单;启用NPAPI以及PPAPI功能,只需将对应的动态库拷贝到对应文件夹,其中NPAPI拷贝到plugins文件夹,PPAPI拷贝到PepperFlash文件夹。
【实例截图】
【核心代码】
774928cd-2f28-4b1f-a0de-bd15593b1bf5
└── xilium-CEF3.2623.1397+Chromium49.0.2623.110
├── Bin
│ ├── Xilium.CefGlue.Client.exe
│ ├── Xilium.CefGlue.Client.exe.config
│ ├── Xilium.CefGlue.Client.pdb
│ ├── Xilium.CefGlue.dll
│ ├── Xilium.CefGlue.pdb
│ ├── Xilium.CefGlue.WindowsForms.dll
│ ├── Xilium.CefGlue.WindowsForms.pdb
│ └── Xilium.CefGlue.xml
├── build
│ ├── setenv.cmd
│ └── setenv-mono.cmd
├── build.cmd
├── build-mono.cmd
├── build-net40.cmd
├── build.proj
├── build.sh
├── CefGlue
│ ├── CefGlue.csproj
│ ├── CefRuntime.cs
│ ├── CefRuntimePlatform.cs
│ ├── Classes.g
│ │ ├── CefApp.g.cs
│ │ ├── CefAuthCallback.g.cs
│ │ ├── CefBeforeDownloadCallback.g.cs
│ │ ├── CefBinaryValue.g.cs
│ │ ├── CefBrowser.g.cs
│ │ ├── CefBrowserHost.g.cs
│ │ ├── CefBrowserProcessHandler.g.cs
│ │ ├── CefCallback.g.cs
│ │ ├── CefClient.g.cs
│ │ ├── CefCommandLine.g.cs
│ │ ├── CefCompletionCallback.g.cs
│ │ ├── CefContextMenuHandler.g.cs
│ │ ├── CefContextMenuParams.g.cs
│ │ ├── CefCookieManager.g.cs
│ │ ├── CefCookieVisitor.g.cs
│ │ ├── CefDeleteCookiesCallback.g.cs
│ │ ├── CefDialogHandler.g.cs
│ │ ├── CefDictionaryValue.g.cs
│ │ ├── CefDisplayHandler.g.cs
│ │ ├── CefDomDocument.g.cs
│ │ ├── CefDomEvent.g.cs
│ │ ├── CefDomNode.g.cs
│ │ ├── CefDomVisitor.g.cs
│ │ ├── CefDownloadHandler.g.cs
│ │ ├── CefDownloadItemCallback.g.cs
│ │ ├── CefDownloadItem.g.cs
│ │ ├── CefDragData.g.cs
│ │ ├── CefDragHandler.g.cs
│ │ ├── CefEndTracingCallback.g.cs
│ │ ├── CefFileDialogCallback.g.cs
│ │ ├── CefFindHandler.g.cs
│ │ ├── CefFocusHandler.g.cs
│ │ ├── CefFrame.g.cs
│ │ ├── CefGeolocationCallback.g.cs
│ │ ├── CefGeolocationHandler.g.cs
│ │ ├── CefGetGeolocationCallback.g.cs
│ │ ├── CefJSDialogCallback.g.cs
│ │ ├── CefJSDialogHandler.g.cs
│ │ ├── CefKeyboardHandler.g.cs
│ │ ├── CefLifeSpanHandler.g.cs
│ │ ├── CefListValue.g.cs
│ │ ├── CefLoadHandler.g.cs
│ │ ├── CefMenuModel.g.cs
│ │ ├── CefNavigationEntry.g.cs
│ │ ├── CefNavigationEntryVisitor.g.cs
│ │ ├── CefPdfPrintCallback.g.cs
│ │ ├── CefPostDataElement.g.cs
│ │ ├── CefPostData.g.cs
│ │ ├── CefPrintDialogCallback.g.cs
│ │ ├── CefPrintHandler.g.cs
│ │ ├── CefPrintJobCallback.g.cs
│ │ ├── CefPrintSettings.g.cs
│ │ ├── CefProcessMessage.g.cs
│ │ ├── CefReadHandler.g.cs
│ │ ├── CefRenderHandler.g.cs
│ │ ├── CefRenderProcessHandler.g.cs
│ │ ├── CefRequestCallback.g.cs
│ │ ├── CefRequestContext.g.cs
│ │ ├── CefRequestContextHandler.g.cs
│ │ ├── CefRequest.g.cs
│ │ ├── CefRequestHandler.g.cs
│ │ ├── CefResolveCallback.g.cs
│ │ ├── CefResourceBundle.g.cs
│ │ ├── CefResourceBundleHandler.g.cs
│ │ ├── CefResourceHandler.g.cs
│ │ ├── CefResponseFilter.g.cs
│ │ ├── CefResponse.g.cs
│ │ ├── CefRunContextMenuCallback.g.cs
│ │ ├── CefRunFileDialogCallback.g.cs
│ │ ├── CefSchemeHandlerFactory.g.cs
│ │ ├── CefSchemeRegistrar.g.cs
│ │ ├── CefSetCookieCallback.g.cs
│ │ ├── CefSslCertPrincipal.g.cs
│ │ ├── CefSslInfo.g.cs
│ │ ├── CefStreamReader.g.cs
│ │ ├── CefStreamWriter.g.cs
│ │ ├── CefStringVisitor.g.cs
│ │ ├── CefTask.g.cs
│ │ ├── CefTaskRunner.g.cs
│ │ ├── CefUrlRequestClient.g.cs
│ │ ├── CefUrlRequest.g.cs
│ │ ├── CefUserData.g.cs
│ │ ├── CefV8Accessor.g.cs
│ │ ├── CefV8Context.g.cs
│ │ ├── CefV8Exception.g.cs
│ │ ├── CefV8Handler.g.cs
│ │ ├── CefV8StackFrame.g.cs
│ │ ├── CefV8StackTrace.g.cs
│ │ ├── CefV8Value.g.cs
│ │ ├── CefValue.g.cs
│ │ ├── CefWebPluginInfo.g.cs
│ │ ├── CefWebPluginInfoVisitor.g.cs
│ │ ├── CefWebPluginUnstableCallback.g.cs
│ │ ├── CefWriteHandler.g.cs
│ │ ├── CefXmlReader.g.cs
│ │ └── CefZipReader.g.cs
│ ├── Classes.Handlers
│ │ ├── CefApp.cs
│ │ ├── CefBrowserProcessHandler.cs
│ │ ├── CefClient.cs
│ │ ├── CefCompletionCallback.cs
│ │ ├── CefContextMenuHandler.cs
│ │ ├── CefCookieVisitor.cs
│ │ ├── CefDeleteCookiesCallback.cs
│ │ ├── CefDialogHandler.cs
│ │ ├── CefDisplayHandler.cs
│ │ ├── CefDomVisitor.cs
│ │ ├── CefDownloadHandler.cs
│ │ ├── CefDragHandler.cs
│ │ ├── CefEndTracingCallback.cs
│ │ ├── CefFindHandler.cs
│ │ ├── CefFocusHandler.cs
│ │ ├── CefGeolocationHandler.cs
│ │ ├── CefGetGeolocationCallback.cs
│ │ ├── CefJSDialogHandler.cs
│ │ ├── CefKeyboardHandler.cs
│ │ ├── CefLifeSpanHandler.cs
│ │ ├── CefLoadHandler.cs
│ │ ├── CefNavigationEntryVisitor.cs
│ │ ├── CefPdfPrintCallback.cs
│ │ ├── CefPrintHandler.cs
│ │ ├── CefReadHandler.cs
│ │ ├── CefRenderHandler.cs
│ │ ├── CefRenderProcessHandler.cs
│ │ ├── CefRequestContextHandler.cs
│ │ ├── CefRequestHandler.cs
│ │ ├── CefResolveCallback.cs
│ │ ├── CefResourceBundleHandler.cs
│ │ ├── CefResourceHandler.cs
│ │ ├── CefResponseFilter.cs
│ │ ├── CefRunFileDialogCallback.cs
│ │ ├── CefSchemeHandlerFactory.cs
│ │ ├── CefSetCookieCallback.cs
│ │ ├── CefStringVisitor.cs
│ │ ├── CefTask.cs
│ │ ├── CefUrlRequestClient.cs
│ │ ├── CefUserData.cs
│ │ ├── CefV8Accessor.cs
│ │ ├── CefV8Handler.cs
│ │ ├── CefWebPluginInfoVisitor.cs
│ │ ├── CefWebPluginUnstableCallback.cs
│ │ └── CefWriteHandler.cs
│ ├── Classes.Proxies
│ │ ├── CefAuthCallback.cs
│ │ ├── CefBeforeDownloadCallback.cs
│ │ ├── CefBinaryValue.cs
│ │ ├── CefBrowser.cs
│ │ ├── CefBrowserHost.cs
│ │ ├── CefCallback.cs
│ │ ├── CefCommandLine.cs
│ │ ├── CefContextMenuParams.cs
│ │ ├── CefCookieManager.cs
│ │ ├── CefDictionaryValue.cs
│ │ ├── CefDomDocument.cs
│ │ ├── CefDomNode.cs
│ │ ├── CefDownloadItemCallback.cs
│ │ ├── CefDownloadItem.cs
│ │ ├── CefDragData.cs
│ │ ├── CefFileDialogCallback.cs
│ │ ├── CefFrame.cs
│ │ ├── CefGeolocationCallback.cs
│ │ ├── CefJSDialogCallback.cs
│ │ ├── CefListValue.cs
│ │ ├── CefMenuModel.cs
│ │ ├── CefNavigationEntry.cs
│ │ ├── CefPostData.cs
│ │ ├── CefPostDataElement.cs
│ │ ├── CefPrintDialogCallback.cs
│ │ ├── CefPrintJobCallback.cs
│ │ ├── CefPrintSettings.cs
│ │ ├── CefProcessMessage.cs
│ │ ├── CefRequestCallback.cs
│ │ ├── CefRequestContext.cs
│ │ ├── CefRequest.cs
│ │ ├── CefResourceBundle.cs
│ │ ├── CefResponse.cs
│ │ ├── CefRunContextMenuCallback.cs
│ │ ├── CefSchemeRegistrar.cs
│ │ ├── CefSslCertPrincipal.cs
│ │ ├── CefSslInfo.cs
│ │ ├── CefStreamReader.cs
│ │ ├── CefStreamWriter.cs
│ │ ├── CefTaskRunner.cs
│ │ ├── CefUrlRequest.cs
│ │ ├── CefV8Context.cs
│ │ ├── CefV8Exception.cs
│ │ ├── CefV8StackFrame.cs
│ │ ├── CefV8StackTrace.cs
│ │ ├── CefV8Value.cs
│ │ ├── CefValue.cs
│ │ ├── CefWebPluginInfo.cs
│ │ ├── CefXmlReader.cs
│ │ └── CefZipReader.cs
│ ├── Enums
│ │ ├── CefCertStatus.cs
│ │ ├── CefColorModel.cs
│ │ ├── CefContextMenuEditStateFlags.cs
│ │ ├── CefContextMenuMediaStateFlags.cs
│ │ ├── CefContextMenuMediaType.cs
│ │ ├── CefContextMenuTypeFlags.cs
│ │ ├── CefContextSafetyImplementation.cs
│ │ ├── CefCursorType.cs
│ │ ├── CefDomDocumentType.cs
│ │ ├── CefDomEventCategory.cs
│ │ ├── CefDomEventPhase.cs
│ │ ├── CefDomNodeType.cs
│ │ ├── CefDragOperationsMask.cs
│ │ ├── CefDuplexMode.cs
│ │ ├── CefErrorCode.cs
│ │ ├── CefEventFlags.cs
│ │ ├── CefFileDialogMode.cs
│ │ ├── CefFocusSource.cs
│ │ ├── CefGeopositionErrorCode.cs
│ │ ├── CefJSDialogType.cs
│ │ ├── CefJsonParserError.cs
│ │ ├── CefJsonParserOptions.cs
│ │ ├── CefJsonWriterOptions.cs
│ │ ├── CefKeyEventType.cs
│ │ ├── CefLogSeverity.cs
│ │ ├── CefMenuId.cs
│ │ ├── CefMenuItemType.cs
│ │ ├── CefMouseButtonType.cs
│ │ ├── CefNavigationType.cs
│ │ ├── CefPaintElementType.cs
│ │ ├── CefPathKey.cs
│ │ ├── CefPdfPrintMarginType.cs
│ │ ├── CefPluginPolicy.cs
│ │ ├── CefPostDataElementType.cs
│ │ ├── CefProcessId.cs
│ │ ├── CefReferrerPolicy.cs
│ │ ├── CefResourceType.cs
│ │ ├── CefResponseFilterStatus.cs
│ │ ├── CefReturnValue.cs
│ │ ├── CefScaleFactor.cs
│ │ ├── CefState.cs
│ │ ├── CefStorageType.cs
│ │ ├── CefTerminationStatus.cs
│ │ ├── CefThreadId.cs
│ │ ├── CefTransitionType.cs
│ │ ├── CefUriUnescapeRules.cs
│ │ ├── CefUrlRequestFlags.cs
│ │ ├── CefUrlRequestStatus.cs
│ │ ├── CefV8AccessControl.cs
│ │ ├── CefV8PropertyAttribute.cs
│ │ ├── CefValueType.cs
│ │ ├── CefWindowOpenDisposition.cs
│ │ ├── CefXmlEncodingType.cs
│ │ └── CefXmlNodeType.cs
│ ├── ExceptionBuilder.cs
│ ├── Exceptions
│ │ ├── CefRuntimeException.cs
│ │ └── CefVersionMismatchException.cs
│ ├── Interop
│ │ ├── Base
│ │ │ ├── bool_t.cs
│ │ │ ├── cef_base_t.cs
│ │ │ ├── cefglue_userdata_t.cs
│ │ │ ├── cef_string_list.cs
│ │ │ ├── cef_string_map.cs
│ │ │ ├── cef_string_multimap.cs
│ │ │ ├── cef_string_t.cs
│ │ │ ├── cef_string_t.disabled.cs
│ │ │ └── cef_string_userfree.cs
│ │ ├── Classes.g
│ │ │ ├── cef_app_t.g.cs
│ │ │ ├── cef_auth_callback_t.g.cs
│ │ │ ├── cef_before_download_callback_t.g.cs
│ │ │ ├── cef_binary_value_t.g.cs
│ │ │ ├── cef_browser_host_t.g.cs
│ │ │ ├── cef_browser_process_handler_t.g.cs
│ │ │ ├── cef_browser_t.g.cs
│ │ │ ├── cef_callback_t.g.cs
│ │ │ ├── cef_client_t.g.cs
│ │ │ ├── cef_command_line_t.g.cs
│ │ │ ├── cef_completion_callback_t.g.cs
│ │ │ ├── cef_context_menu_handler_t.g.cs
│ │ │ ├── cef_context_menu_params_t.g.cs
│ │ │ ├── cef_cookie_manager_t.g.cs
│ │ │ ├── cef_cookie_visitor_t.g.cs
│ │ │ ├── cef_delete_cookies_callback_t.g.cs
│ │ │ ├── cef_dialog_handler_t.g.cs
│ │ │ ├── cef_dictionary_value_t.g.cs
│ │ │ ├── cef_display_handler_t.g.cs
│ │ │ ├── cef_domdocument_t.g.cs
│ │ │ ├── cef_domevent_listener_t.g.cs
│ │ │ ├── cef_domevent_t.g.cs
│ │ │ ├── cef_domnode_t.g.cs
│ │ │ ├── cef_domvisitor_t.g.cs
│ │ │ ├── cef_download_handler_t.g.cs
│ │ │ ├── cef_download_item_callback_t.g.cs
│ │ │ ├── cef_download_item_t.g.cs
│ │ │ ├── cef_drag_data_t.g.cs
│ │ │ ├── cef_drag_handler_t.g.cs
│ │ │ ├── cef_end_tracing_callback_t.g.cs
│ │ │ ├── cef_file_dialog_callback_t.g.cs
│ │ │ ├── cef_find_handler_t.g.cs
│ │ │ ├── cef_focus_handler_t.g.cs
│ │ │ ├── cef_frame_t.g.cs
│ │ │ ├── cef_geolocation_callback_t.g.cs
│ │ │ ├── cef_geolocation_handler_t.g.cs
│ │ │ ├── cef_get_geolocation_callback_t.g.cs
│ │ │ ├── cef_jsdialog_callback_t.g.cs
│ │ │ ├── cef_jsdialog_handler_t.g.cs
│ │ │ ├── cef_keyboard_handler_t.g.cs
│ │ │ ├── cef_life_span_handler_t.g.cs
│ │ │ ├── cef_list_value_t.g.cs
│ │ │ ├── cef_load_handler_t.g.cs
│ │ │ ├── cef_menu_model_t.g.cs
│ │ │ ├── cef_navigation_entry_t.g.cs
│ │ │ ├── cef_navigation_entry_visitor_t.g.cs
│ │ │ ├── cef_pdf_print_callback_t.g.cs
│ │ │ ├── cef_post_data_element_t.g.cs
│ │ │ ├── cef_post_data_t.g.cs
│ │ │ ├── cef_print_dialog_callback_t.g.cs
│ │ │ ├── cef_print_handler_t.g.cs
│ │ │ ├── cef_print_job_callback_t.g.cs
│ │ │ ├── cef_print_settings_t.g.cs
│ │ │ ├── cef_process_message_t.g.cs
│ │ │ ├── cef_read_handler_t.g.cs
│ │ │ ├── cef_render_handler_t.g.cs
│ │ │ ├── cef_render_process_handler_t.g.cs
│ │ │ ├── cef_request_callback_t.g.cs
│ │ │ ├── cef_request_context_handler_t.g.cs
│ │ │ ├── cef_request_context_t.g.cs
│ │ │ ├── cef_request_handler_t.g.cs
│ │ │ ├── cef_request_t.g.cs
│ │ │ ├── cef_resolve_callback_t.g.cs
│ │ │ ├── cef_resource_bundle_handler_t.g.cs
│ │ │ ├── cef_resource_bundle_t.g.cs
│ │ │ ├── cef_resource_handler_t.g.cs
│ │ │ ├── cef_response_filter_t.g.cs
│ │ │ ├── cef_response_t.g.cs
│ │ │ ├── cef_run_context_menu_callback_t.g.cs
│ │ │ ├── cef_run_file_dialog_callback_t.g.cs
│ │ │ ├── cef_scheme_handler_factory_t.g.cs
│ │ │ ├── cef_scheme_registrar_t.g.cs
│ │ │ ├── cef_set_cookie_callback_t.g.cs
│ │ │ ├── cef_sslcert_principal_t.g.cs
│ │ │ ├── cef_sslinfo_t.g.cs
│ │ │ ├── cef_stream_reader_t.g.cs
│ │ │ ├── cef_stream_writer_t.g.cs
│ │ │ ├── cef_string_visitor_t.g.cs
│ │ │ ├── cef_task_runner_t.g.cs
│ │ │ ├── cef_task_t.g.cs
│ │ │ ├── cef_urlrequest_client_t.g.cs
│ │ │ ├── cef_urlrequest_t.g.cs
│ │ │ ├── cef_user_data_t.g.cs
│ │ │ ├── cef_v8accessor_t.g.cs
│ │ │ ├── cef_v8context_t.g.cs
│ │ │ ├── cef_v8exception_t.g.cs
│ │ │ ├── cef_v8handler_t.g.cs
│ │ │ ├── cef_v8stack_frame_t.g.cs
│ │ │ ├── cef_v8stack_trace_t.g.cs
│ │ │ ├── cef_v8value_t.g.cs
│ │ │ ├── cef_value_t.g.cs
│ │ │ ├── cef_web_plugin_info_t.g.cs
│ │ │ ├── cef_web_plugin_info_visitor_t.g.cs
│ │ │ ├── cef_web_plugin_unstable_callback_t.g.cs
│ │ │ ├── cef_write_handler_t.g.cs
│ │ │ ├── cef_xml_reader_t.g.cs
│ │ │ └── cef_zip_reader_t.g.cs
│ │ ├── libcef.cs
│ │ ├── libcef.g.cs
│ │ ├── libcef.string.cs
│ │ ├── libcef.string_list.cs
│ │ ├── libcef.string_map.cs
│ │ ├── libcef.string_multimap.cs
│ │ ├── libcef.time.cs
│ │ ├── _Platform
│ │ │ ├── NativeMethods.cs
│ │ │ └── RECT.cs
│ │ ├── Structs
│ │ │ ├── cef_browser_settings_t.cs
│ │ │ ├── cef_cookie_t.cs
│ │ │ ├── cef_cursor_info_t.cs
│ │ │ ├── cef_draggable_region_t.cs
│ │ │ ├── cef_geoposition_t.cs
│ │ │ ├── cef_key_event_t.cs
│ │ │ ├── cef_main_args_t.cs
│ │ │ ├── cef_mouse_event_t.cs
│ │ │ ├── cef_page_range_t.cs
│ │ │ ├── cef_pdf_print_settings_t.cs
│ │ │ ├── cef_point_t.cs
│ │ │ ├── cef_popup_features_t.cs
│ │ │ ├── cef_rect_t.cs
│ │ │ ├── cef_request_context_settings_t.cs
│ │ │ ├── cef_screen_info_t.cs
│ │ │ ├── cef_settings_t.cs
│ │ │ ├── cef_size_t.cs
│ │ │ ├── cef_time_t.cs
│ │ │ ├── cef_urlparts_t.cs
│ │ │ └── cef_window_info_t.cs
│ │ └── version.g.cs
│ ├── obj
│ │ └── Debug
│ │ ├── CefGlue.csproj.FileListAbsolute.txt
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Xilium.CefGlue.dll
│ │ └── Xilium.CefGlue.pdb
│ ├── Platform
│ │ ├── Linux
│ │ │ └── CefWindowInfoLinuxImpl.cs
│ │ ├── Mac
│ │ │ └── CefWindowInfoMacImpl.cs
│ │ └── Windows
│ │ ├── CefWindowInfoWindowsImpl.cs
│ │ ├── LoadLibraryFlags.cs
│ │ ├── NativeMethods.cs
│ │ ├── WindowStyles.cs
│ │ └── WindowStylesEx.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── StringHelper.cs
│ ├── Structs
│ │ ├── CefBrowserSettings.cs
│ │ ├── CefColor.cs
│ │ ├── CefCookie.cs
│ │ ├── CefCursorInfo.cs
│ │ ├── CefDraggableRegion.cs
│ │ ├── CefGeoposition.cs
│ │ ├── CefKeyEvent.cs
│ │ ├── CefMainArgs.cs
│ │ ├── CefMouseEvent.cs
│ │ ├── CefPageRange.cs
│ │ ├── CefPdfPrintSettings.cs
│ │ ├── CefPoint.cs
│ │ ├── CefPopupFeatures.cs
│ │ ├── CefRectangle.cs
│ │ ├── CefRequestContextSettings.cs
│ │ ├── CefScreenInfo.cs
│ │ ├── CefSettings.cs
│ │ ├── CefSize.cs
│ │ ├── CefUrlParts.cs
│ │ └── CefWindowInfo.cs
│ └── Wrapper
│ └── MessageRouter
│ ├── CefBrowserInfoMap.cs
│ ├── CefMessageRouterBrowserSide.cs
│ ├── CefMessageRouterConfig.cs
│ ├── CefMessageRouter.cs
│ ├── CefMessageRouterRendererSide.cs
│ ├── Helpers.cs
│ └── ReadMe.txt
├── CefGlue.Client
│ ├── app.config
│ ├── app.manifest
│ ├── CefGlue.Client.csproj
│ ├── DemoApp.cs
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── NativeMethods.cs
│ ├── obj
│ │ └── Debug
│ │ ├── CefGlue.Client.csproj.FileListAbsolute.txt
│ │ ├── CefGlue.Client.csproj.GenerateResource.Cache
│ │ ├── CefGlue.Client.csprojResolveAssemblyReference.cache
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Xilium.CefGlue.Client.exe
│ │ ├── Xilium.CefGlue.Client.MainForm.resources
│ │ └── Xilium.CefGlue.Client.pdb
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── SetWindowPosFlags.cs
│ └── ToolStripSpringTextBox.cs
├── CefGlue.Demo
│ ├── Browser
│ │ ├── EventArgs
│ │ │ ├── AddressChangedEventArgs.cs
│ │ │ ├── LoadingStateChangedEventArgs.cs
│ │ │ ├── TargetUrlChangedEventArgs.cs
│ │ │ └── TitleChangedEventArgs.cs
│ │ ├── StatusMessageEventArgs.cs
│ │ ├── WebBrowser.cs
│ │ ├── WebClient.cs
│ │ ├── WebDisplayHandler.cs
│ │ ├── WebLifeSpanHandler.cs
│ │ ├── WebLoadHandler.cs
│ │ └── WebRequestHandler.cs
│ ├── CefGlue.Demo.csproj
│ ├── Command.cs
│ ├── Common
│ │ ├── DemoBrowserProcessHandler.cs
│ │ └── DemoCefApp.cs
│ ├── DemoApp.cs
│ ├── IMainView.cs
│ ├── IWebNavigationBox.cs
│ ├── MenuItem.cs
│ ├── obj
│ │ └── Debug
│ │ ├── build.force
│ │ ├── CefGlue.Demo.csproj.FileListAbsolute.txt
│ │ ├── CefGlue.Demo.csprojResolveAssemblyReference.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Xilium.CefGlue.Demo.dll
│ │ └── Xilium.CefGlue.Demo.pdb
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Renderer
│ │ └── DemoRenderProcessHandler.cs
│ ├── SchemeHandler
│ │ ├── DemoAppSchemeHandlerFactory.cs
│ │ └── DumpRequestResourceHandler.cs
│ └── WebBrowserState.cs
├── CefGlue.Demo.WinForms
│ ├── app.config
│ ├── app.manifest
│ ├── CefGlue.Demo.WinForms.csproj
│ ├── Control
│ │ ├── CefWebBrowser.cs
│ │ ├── CefWebView.cs
│ │ ├── NativeMethods.cs
│ │ └── SetWindowPosFlags.cs
│ ├── DemoAppImpl.cs
│ ├── MainViewImpl.cs
│ ├── obj
│ │ └── Debug
│ │ ├── build.force
│ │ ├── CefGlue.Demo.WinForms.csproj.FileListAbsolute.txt
│ │ ├── CefGlue.Demo.WinForms.csproj.GenerateResource.Cache
│ │ ├── CefGlue.Demo.WinForms.csprojResolveAssemblyReference.cache
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ ├── Xilium.CefGlue.Demo.Properties.Resources.resources
│ │ ├── Xilium.CefGlue.Demo.WebNavigationBox.resources
│ │ ├── Xilium.CefGlue.Demo.WinForms.exe
│ │ └── Xilium.CefGlue.Demo.WinForms.pdb
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── appbar.arrow.left.png
│ │ ├── appbar.arrow.right.png
│ │ ├── appbar.close.png
│ │ ├── appbar.home.png
│ │ ├── appbar.refresh.png
│ │ └── go.png
│ ├── WebNavigationBox.cs
│ ├── WebNavigationBox.Designer.cs
│ └── WebNavigationBox.resx
├── CefGlue.Interop.Gen
│ ├── cefglue_interop_gen.py
│ ├── cef_parser.py
│ ├── date_util.py
│ ├── file_util.py
│ ├── gen-cef3.cmd
│ ├── include
│ │ ├── cef_app.h
│ │ ├── cef_application_mac.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_jsdialog_handler.h
│ │ ├── cef_keyboard_handler.h
│ │ ├── cef_life_span_handler.h
│ │ ├── cef_load_handler.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_runnable.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_linux.h
│ │ │ ├── cef_logging_internal.h
│ │ │ ├── cef_mac.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_linux.h
│ │ │ ├── cef_types_mac.h
│ │ │ ├── cef_types_win.h
│ │ │ ├── cef_types_wrappers.h
│ │ │ └── cef_win.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
│ ├── make_interop.py
│ ├── schema_cef3.py
│ └── schema.py
├── CefGlue.WindowsForms
│ ├── AddressChangedEventArgs.cs
│ ├── BeforePopupEventArgs.cs
│ ├── CefGlue.WindowsForms.csproj
│ ├── CefWebBrowser.bmp
│ ├── CefWebBrowser.cs
│ ├── CefWebClient.cs
│ ├── CefWebDisplayHandler.cs
│ ├── CefWebLifeSpanHandler.cs
│ ├── CefWebLoadHandler.cs
│ ├── CefWebRequestHandler.cs
│ ├── common
│ │ └── CefMenuHandler.cs
│ ├── ConsoleMessageEventArgs.cs
│ ├── LoadEndEventArgs.cs
│ ├── LoadErrorEventArgs.cs
│ ├── LoadingStateChangeEventArgs.cs
│ ├── LoadStartEventArgs.cs
│ ├── NativeMethods.cs
│ ├── obj
│ │ └── Debug
│ │ ├── CefGlue.WindowsForms.csproj.FileListAbsolute.txt
│ │ ├── CefGlue.WindowsForms.csprojResolveAssemblyReference.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── Xilium.CefGlue.WindowsForms.dll
│ │ └── Xilium.CefGlue.WindowsForms.pdb
│ ├── PluginCrashedEventArgs.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RenderProcessTerminatedEventArgs.cs
│ ├── SetWindowPosFlags.cs
│ ├── StatusMessageEventArgs.cs
│ ├── TitleChangedEventArgs.cs
│ └── TooltipEventArgs.cs
├── normalize-line-endings.cmd
├── Output
│ ├── Cache
│ │ ├── Cookies
│ │ ├── Cookies-journal
│ │ ├── data_0
│ │ ├── data_1
│ │ ├── data_2
│ │ ├── data_3
│ │ ├── f_000001
│ │ ├── GPUCache
│ │ │ ├── data_0
│ │ │ ├── data_1
│ │ │ ├── data_2
│ │ │ ├── data_3
│ │ │ └── index
│ │ ├── index
│ │ └── Visited Links
│ ├── cef_100_percent.pak
│ ├── cef_200_percent.pak
│ ├── cefclient.exe
│ ├── cef_extensions.pak
│ ├── cef.log
│ ├── cef.pak
│ ├── console.log
│ ├── 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
│ ├── MyTabControl.dll
│ ├── MyTabControl.pdb
│ ├── MyTabControl.xml
│ ├── natives_blob.bin
│ ├── snapshot_blob.bin
│ ├── widevinecdmadapter.dll
│ ├── wow_helper.exe
│ ├── Xilium.CefGlue.Client.exe
│ ├── Xilium.CefGlue.Client.exe.config
│ ├── Xilium.CefGlue.Client.pdb
│ ├── Xilium.CefGlue.Demo.dll
│ ├── Xilium.CefGlue.Demo.pdb
│ ├── Xilium.CefGlue.Demo.WinForms.exe
│ ├── Xilium.CefGlue.Demo.WinForms.exe.config
│ ├── Xilium.CefGlue.Demo.WinForms.pdb
│ ├── Xilium.CefGlue.dll
│ ├── Xilium.CefGlue.pdb
│ ├── Xilium.CefGlue.WindowsForms.dll
│ ├── Xilium.CefGlue.WindowsForms.pdb
│ └── Xilium.CefGlue.xml
├── packages
│ ├── NLog.2.0.1.2
│ │ ├── lib
│ │ │ ├── net20
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── net35
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── net40
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── net45
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── sl2
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── sl3
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── sl3-wp
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── sl4
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ ├── sl4-windowsphone71
│ │ │ │ ├── NLog.dll
│ │ │ │ └── NLog.xml
│ │ │ └── sl5
│ │ │ ├── NLog.dll
│ │ │ └── NLog.xml
│ │ ├── NLog.2.0.1.2.nupkg
│ │ └── tools
│ │ ├── net20
│ │ │ └── InstallNLogConfig.exe
│ │ ├── net35
│ │ │ └── InstallNLogConfig.exe
│ │ ├── net40
│ │ │ └── InstallNLogConfig.exe
│ │ └── net45
│ │ └── InstallNLogConfig.exe
│ └── repositories.config
├── tools
│ ├── xifixeol.exe
│ └── xifixeol.exe.config
├── Xilium.CefGlue.shfbproj
└── Xilium.CefGlue.sln
76 directories, 789 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论