I tried doing it from the C Sharp code and it woks with win forms project but NOT with wpf project!
CefSharp.BrowserSettings browser_setting = new CefSharp.BrowserSettings();
browser_setting.FileAccessFromFileUrlsAllowed = true;
browser_setting.UniversalAccessFromFileUrlsAllowed = true;
browser_setting.WebSecurityDisabled = true;
browser.BrowserSettings = browser_setting;
In the Winforms it works but in the WPF it doesnt!
Thanks