Commit dacd5eb349e227c3d51b9b9bb7c09e5997325385

Authored by sh
1 parent d3520665

打开webBrowser的滚动条,修改律师阅卷连接

FRControl/Home.cs
... ... @@ -67,7 +67,7 @@ namespace FRControl
67 67 //System.Diagnostics.Process.Start(Properties.Settings.Default.personInterview);
68 68 WebView webView = new WebView();
69 69 title = Properties.Settings.Default.personName;
70   - url = Properties.Settings.Default.personInterview;
  70 + url = Properties.Settings.Default.personInterview+"?casLv=1&service=https://www.12309.gov.cn/sppWeb/j_spring_cas_security_check";
71 71 //webView.param = Properties.Settings.Default.caseInformation;
72 72 webView.Show();
73 73 }
... ...
FRControl/WebView.cs
... ... @@ -43,7 +43,7 @@ namespace FRControl
43 43 this.webBrowser1.Url = new Uri(Home.url);
44 44 this.TitleLab.Text = Home.title;
45 45 this.webBrowser1.ScriptErrorsSuppressed = true;
46   - this.webBrowser1.ScrollBarsEnabled = false;
  46 + //this.webBrowser1.ScrollBarsEnabled = false;
47 47  
48 48 }
49 49  
... ...