C# How to update IE7 to new version

Iam very new to coding so please pardon my lack of knowledge. I made a program "Music player" that uses webBrowser to play video from youtube but from what i understood from other posts it cant work due to webBrowser being IE7. I dont neccessarily have to use webBrowser but it seemed like the best… Read More C# How to update IE7 to new version

Why did my Browser Element doesent show my html string?

So I try to work the first time with an Web Browser Element in Wpfl. I tryd to show my html string in the Web Browser Element. I tried it like that: public static readonly DependencyProperty HtmlProperty = DependencyProperty.RegisterAttached( "Html", typeof(string), typeof(Class1), new FrameworkPropertyMetadata(OnHtmlChanged)); [AttachedPropertyBrowsableForType(typeof(WebBrowser))] public static string GetHtml(WebBrowser d) { return (string)d.GetValue(HtmlProperty); } public… Read More Why did my Browser Element doesent show my html string?