I am trying to load a load a Webpage in C# WebBrowser control (WPF not WinForm).
Along with other content the page has a image rotator that Dynamically creates two divs having same class to utilize the image rotating.
In the LoadComplete event
of the WebBrowser control I am attaching a style sheet to hide the two divs.
The two divs created dynamically onload of the page is follow :
<div class="backgroundImageDivsClass" style="
width: 100%;
height: 100%;
position: fixed;
top: 0px;
left: 0px;
padding: 0px;
margin: 0px;
z-index: -9999;
opacity: 1;
background-image: url("data/767/Course/9214/1000000001_474030834.jpg");
background-position: left top;
background-size: 100% 100%;
background-repeat: no-repeat;
"></div>
<div class="backgroundImageDivsClass"></div>
And the way css is assigned inside LoadComplete event of the webbrowser control is :
mshtml.IHTMLStyleSheet styleSheet = Document.createStyleSheet(string.Empty, 0);
styleSheet.cssText = @".backgroundImageDivsClass{display:none;}";
But this seems not working as its not hiding the divs. Anybody please give me some idea what I am missing.
This is the method I used based on your descriptions and it's working fine.