예제 #1
0
 public LiteHtmlPanel(ScrollViewer parent, WpfContainer container, bool createOldStyleControls = true)
 {
     _scrollParent = parent;
     SetupScrollView();
     Container = container;
     SetupContainerCallbacks(createOldStyleControls);
 }
예제 #2
0
 public LiteHtmlPanel(ScrollViewer parent, string masterCSS, IResourceLoader loader, bool createdOldStyleControls = true)
 {
     _scrollParent = parent;
     SetupScrollView();
     Container = new WpfContainer(masterCSS, loader);
     SetupContainerCallbacks(createdOldStyleControls);
 }