using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Linq; using System.Windows.Forms; using DevExpress.XtraEditors; namespace Lskj.BaseWorkflow { public partial class FlowChart : DevExpress.XtraEditors.XtraForm { public FlowChart() { InitializeComponent(); } public void SetUrl(string url) { Uri uri = new Uri(url); this.webBrowser1.Url = uri; } } }