• 大小: 37.91MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-07-23
  • 语言: 其他
  • 标签: Cef3  音视频  Flash  

资源简介

CEF3的2016整合版本,output包含了所有所需的必要dll,解决加载flash动画闪现命令框问题;增加下载模块;整合之前未上传的控件源码;增加MP3、MP4支持;并更新了tabcontrol,增加关闭按钮;重新写了右键菜单;启用NPAPI以及PPAPI功能,只需将对应的动态库拷贝到对应文件夹,其中NPAPI拷贝到plugins文件夹,PPAPI拷贝到PepperFlash文件夹;

资源截图

代码片段和文件信息

namespace Xilium.CefGlue
{
    using System;
    using System.Collections.Generic;
    using System.Globalization;
    using System.Runtime.InteropServices;
    using System.Text;
    using Xilium.CefGlue.Interop;

    public static unsafe class CefRuntime
    {
        private static readonly CefRuntimePlatform _platform;

        private static bool _loaded;
        private static bool _initialized;

        static CefRuntime()
        {
            _platform = DetectPlatform();
        }

        #region Platform Detection
        private static CefRuntimePlatform DetectPlatform()
        {
            var platformId = Environment.OSVersion.Platform;

            if (platformId == PlatformID.MacOSX)
                return CefRuntimePlatform.MacOSX;

            int p = (int)platformId;
            if ((p == 4) || (p == 128))
                return IsRunningOnMac() ? CefRuntimePlatform.MacOSX : CefRuntimePlatform.Linux;

            return CefRuntimePlatform.Windows;
        }

        //From Managed.Windows.Forms/XplatUI
        private static bool IsRunningOnMac()
        {
            IntPtr buf = IntPtr.Zero;
            try
            {
                buf = Marshal.AllocHGlobal(8192);
                // This is a hacktastic way of getting sysname from uname ()
                if (uname(buf) == 0)
                {
                    string os = Marshal.PtrToStringAnsi(buf);
                    if (os == “Darwin“)
                        return true;
                }
            }
            catch { }
            finally
            {
                if (buf != IntPtr.Zero)
                    Marshal.FreeHGlobal(buf);
            }

            return false;
        }

        [DllImport(“libc“)]
        private static extern int uname(IntPtr buf);

        public static CefRuntimePlatform Platform
        {
            get { return _platform; }
        }
        #endregion

        /// 
        /// Loads CEF runtime.
        /// 

        /// 
        /// 
        /// 
        public static void Load()
        {
            Load(null);
        }

        /// 
        /// Loads CEF runtime from specified path.
        /// 

        /// 
        /// 
        /// 
        public static void Load(string path)
        {
            if (_loaded) return;

            if (!string.IsNullOrEmpty(path))
            {
                if (Platform == CefRuntimePlatform.Windows)
                    LoadLibraryWindows(path);
                else
                    throw new PlatformNotSupportedException(“CEF Runtime can‘t be initialized on altered path on this platform. Use CefRuntime.Loa

评论

共有 条评论