Files
lserp_cs_6.0/插件库/Lskj.Workflow/FlowChart.cs
T
cyf ab56a9bcf7 基线 SVN r240
SVN-Revision: r240
2025-02-06 06:46:06 +00:00

26 lines
552 B
C#

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.Workflow
{
public partial class FlowChart : DevExpress.XtraEditors.XtraForm
{
public FlowChart()
{
InitializeComponent();
}
public void SetUrl(string url)
{
Uri uri = new Uri(url);
this.webBrowser1.Url = uri;
}
}
}