ab56a9bcf7
SVN-Revision: r240
26 lines
552 B
C#
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;
|
|
}
|
|
}
|
|
} |