98d226f118
MainWindow.xaml uses the MainView View/ViewModel, which contains its own IWebBrowser. Removed redundant/unused IWebBrowser from MainWindow.xaml.cs.
16 lines
297 B
C#
16 lines
297 B
C#
using CefSharp.MinimalExample.Wpf.Mvvm;
|
|
using CefSharp.Wpf;
|
|
using System.ComponentModel;
|
|
using System.Windows;
|
|
|
|
namespace CefSharp.MinimalExample.Wpf
|
|
{
|
|
public partial class MainWindow : Window
|
|
{
|
|
public MainWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|