I am inserting the chromium web browser (cef sharp) in WPF but it is showing error that ChromiumWebBrowser does not exist in the namespace although i have already added the namespace and already installed CefSharp.WPF from the NuGet manager. Following is the code on which it is showing error.
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cefSharp="namespace:CefSharp.Wpf;assembly=CefSharp.Wpf"
Title="MainWindow" Height="350" Width="525">
<Grid>
<cefSharp:ChromiumWebBrowser x:Name="Browser"/>
</Grid>