实际上,我想从C#WPF中为网站打开带有访问凭据的URL,而不使用WebBrowser Control,因为该网站基于Google Chrome浏览器内嵌框架。
主要担心的是,我希望隐藏URL以提高安全性。我是这样实现的:
dynamic ie = Activator.CreateInstance(Type.GetTypeFromProgID("InternetExplorer.Application"));
ie.AddressBar = false;
ie.MenuBar = false;
ie.ToolBar = false;
ie.StatusBar = false;
ie.Visibility = true;
ie.Navigate("https://www.google.com.sa/?username=anonymous&password=1234567&SoOn");
这对我来说很好用,但是我遇到的问题是URL开始出现在标题栏中,该怎么隐藏呢?