/// <summary> /// load and init cef library /// </summary> public virtual bool Init(string libpath = null) { bool loadResult = Cef3Binder.LoadCef3(this); if (!loadResult) { return(false); } return(true); }
/// <summary> /// load and init cef library /// </summary> public virtual bool Init() { bool loadResult = Cef3Binder.LoadCef3(this); if (!loadResult) { return(false); } return(true); }