| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace Core.StlMes.Client.LgIntegrationQuery
- {
- public partial class frmOperationManual : Core.StlMes.Client.LgCommon.frmStyleBase
- {
- public string path = "";
- public frmOperationManual()
- {
- InitializeComponent();
- }
- private void frmOperationManual_Load(object sender, EventArgs e)
- {
- path = this.CustomInfo;
- init();
- }
- private void init()
- {
- string url = "http://172.16.100.17:8088/OperationManual/" + path + "/default.html";
- // string url = "http://172.16.100.17:8088/OperationManual/default.html";
- if (url == "") return;
- try
- {
- Cursor.Current = Cursors.WaitCursor;
- this.webBrowser1.Url = new Uri(url);
- //webBrowser1.Navigate(url);
- }
- finally
- {
- Cursor.Current = Cursors.Default;
- }
- }
- }
- }
|