【资源树视图】
【实例简介】
EDWORKFLOW工作流参照国际工作流管理联盟标准设计, 定位为业务流程管理平台,能够轻松实现中小企业级的业务管理流程。 EDWORKFLOW系统具有独立的工作流引擎、工作流程API接口和可视化的流程管理与编辑器。用户可视化地定义、修改工作流程,在业务执行时调用流程API接口,能够很方便的完成业务的流转。
EDWORKFLOW的工作流引擎和API接口是基于.Net、Sql server进行开发,可视化的流程管理与编辑器是B/S版软件,运行环境Framework4.0、Sqlserver2005、IIS6.0、IE6.0以上版本。
【实例截图】
【核心代码】
7144765b-3a64-4f95-a882-8c001b59b719
├── Demo
│?? ├── EDWFDemo
│?? │?? ├── bin
│?? │?? │?? ├── EDWFDemo.dll
│?? │?? │?? ├── EDWFDemo.pdb
│?? │?? │?? ├── EDWFDesignTool.dll
│?? │?? │?? ├── EDWFModel.dll
│?? │?? │?? ├── EDWFModel.xml
│?? │?? │?? ├── EDWorkFlow.dll
│?? │?? │?? ├── EDWorkFlow.xml
│?? │?? │?? ├── Telerik.Web.UI.dll
│?? │?? │?? ├── Telerik.Web.UI.Skins.dll
│?? │?? │?? ├── Telerik.Web.UI.xml
│?? │?? │?? ├── TestLibrary.dll
│?? │?? │?? └── TestLibrary.pdb
│?? │?? ├── Controls
│?? │?? │?? ├── Navigation.ascx
│?? │?? │?? ├── Navigation.ascx.cs
│?? │?? │?? ├── Navigation.ascx.designer.cs
│?? │?? │?? ├── SelectUserLogin.ascx
│?? │?? │?? ├── SelectUserLogin.ascx.cs
│?? │?? │?? └── SelectUserLogin.ascx.designer.cs
│?? │?? ├── create.sql
│?? │?? ├── DemoBase.cs
│?? │?? ├── EDWFButton
│?? │?? │?? ├── OneAI.ascx
│?? │?? │?? ├── OneAI.ascx.cs
│?? │?? │?? ├── OneAI.ascx.designer.cs
│?? │?? │?? ├── WFSpecialStartButton.ascx
│?? │?? │?? ├── WFSpecialStartButton.ascx.cs
│?? │?? │?? ├── WFSpecialStartButton.ascx.designer.cs
│?? │?? │?? ├── WFStartButton.ascx
│?? │?? │?? ├── WFStartButton.ascx.cs
│?? │?? │?? ├── WFStartButton.ascx.designer.cs
│?? │?? │?? ├── WFSubmitButton.ascx
│?? │?? │?? ├── WFSubmitButton.ascx.cs
│?? │?? │?? └── WFSubmitButton.ascx.designer.cs
│?? │?? ├── EDWFConfig
│?? │?? │?? └── EDWFConfig.xml
│?? │?? ├── EDWFDemo.csproj
│?? │?? ├── EDWFDemo.csproj.user
│?? │?? ├── EDWFDT
│?? │?? │?? ├── Controls
│?? │?? │?? │?? └── Navigation.ascx
│?? │?? │?? ├── css
│?? │?? │?? │?? └── Site.css
│?? │?? │?? ├── img
│?? │?? │?? │?? ├── Icon
│?? │?? │?? │?? │?? ├── button2.jpg
│?? │?? │?? │?? │?? ├── button4.jpg
│?? │?? │?? │?? │?? ├── button6.jpg
│?? │?? │?? │?? │?? ├── delete.jpg
│?? │?? │?? │?? │?? ├── downarrow.jpg
│?? │?? │?? │?? │?? ├── edit.jpg
│?? │?? │?? │?? │?? ├── fit.jpg
│?? │?? │?? │?? │?? ├── hidelong.jpg
│?? │?? │?? │?? │?? ├── key.jpg
│?? │?? │?? │?? │?? ├── leftarrow.jpg
│?? │?? │?? │?? │?? └── search.jpg
│?? │?? │?? │?? └── xiorkflow
│?? │?? │?? │?? ├── checkvalidity.jpg
│?? │?? │?? │?? ├── collectand.jpg
│?? │?? │?? │?? ├── collect.jpg
│?? │?? │?? │?? ├── delete.jpg
│?? │?? │?? │?? ├── end.jpg
│?? │?? │?? │?? ├── forkand.jpg
│?? │?? │?? │?? ├── fork.jpg
│?? │?? │?? │?? ├── help.jpg
│?? │?? │?? │?? ├── home.jpg
│?? │?? │?? │?? ├── joinand.jpg
│?? │?? │?? │?? ├── join.jpg
│?? │?? │?? │?? ├── metanode.jpg
│?? │?? │?? │?? ├── nodeauto.jpg
│?? │?? │?? │?? ├── node.jpg
│?? │?? │?? │?? ├── nodesub.jpg
│?? │?? │?? │?? ├── print.jpg
│?? │?? │?? │?? ├── rectangle.jpg
│?? │?? │?? │?? ├── save.jpg
│?? │?? │?? │?? ├── select.jpg
│?? │?? │?? │?? ├── start.jpg
│?? │?? │?? │?? └── transition.jpg
│?? │?? │?? ├── js
│?? │?? │?? │?? ├── geom
│?? │?? │?? │?? │?? ├── Point.js
│?? │?? │?? │?? │?? └── ui
│?? │?? │?? │?? │?? ├── GeometryCanvas.js
│?? │?? │?? │?? │?? ├── LineTextView.js
│?? │?? │?? │?? │?? └── LineView.js
│?? │?? │?? │?? ├── html
│?? │?? │?? │?? │?? ├── Browser.js
│?? │?? │?? │?? │?? ├── Cursor.js
│?? │?? │?? │?? │?? ├── MouseEvent.js
│?? │?? │?? │?? │?? └── Toolkit.js
│?? │?? │?? │?? ├── page
│?? │?? │?? │?? │?? ├── jquery.js
│?? │?? │?? │?? │?? ├── pagediv.js
│?? │?? │?? │?? │?? ├── process.js
│?? │?? │?? │?? │?? └── view.js
│?? │?? │?? │?? ├── ui
│?? │?? │?? │?? │?? ├── ButtonGroup.js
│?? │?? │?? │?? │?? ├── Button.js
│?? │?? │?? │?? │?? ├── ButtonModel.js
│?? │?? │?? │?? │?? ├── Component.js
│?? │?? │?? │?? │?? ├── Dimension.js
│?? │?? │?? │?? │?? ├── event
│?? │?? │?? │?? │?? │?? ├── ActionListener.js
│?? │?? │?? │?? │?? │?? ├── ContextMenuListener.js
│?? │?? │?? │?? │?? │?? ├── KeyListener.js
│?? │?? │?? │?? │?? │?? ├── ListenerProxy.js
│?? │?? │?? │?? │?? │?? ├── MouseListener.js
│?? │?? │?? │?? │?? │?? └── MouseWheelListener.js
│?? │?? │?? │?? │?? ├── Frame.js
│?? │?? │?? │?? │?? ├── Label.js
│?? │?? │?? │?? │?? ├── Panel.js
│?? │?? │?? │?? │?? ├── ScrollPanel.js
│?? │?? │?? │?? │?? ├── ToggleButton.js
│?? │?? │?? │?? │?? ├── ToggleButtonModel.js
│?? │?? │?? │?? │?? ├── ToolBar.js
│?? │?? │?? │?? │?? └── ui.css
│?? │?? │?? │?? ├── util
│?? │?? │?? │?? │?? ├── Array.js
│?? │?? │?? │?? │?? ├── List.js
│?? │?? │?? │?? │?? ├── Message.js
│?? │?? │?? │?? │?? ├── Observable.js
│?? │?? │?? │?? │?? ├── Observer.js
│?? │?? │?? │?? │?? └── String.js
│?? │?? │?? │?? ├── xiorkflow
│?? │?? │?? │?? │?? ├── event
│?? │?? │?? │?? │?? │?? ├── DeleteMetaActionListener.js
│?? │?? │?? │?? │?? │?? ├── HelpActionListener.js
│?? │?? │?? │?? │?? │?? ├── MetaMoveKeyListener.js
│?? │?? │?? │?? │?? │?? ├── MetaMoveMouseListener.js
│?? │?? │?? │?? │?? │?? ├── SaveActionListener.js
│?? │?? │?? │?? │?? │?? ├── WrapperMetaMouseListener.js
│?? │?? │?? │?? │?? │?? ├── WrapperSelectMouseListener.js
│?? │?? │?? │?? │?? │?? └── WrapperTransitionMouseListener.js
│?? │?? │?? │?? │?? ├── meta
│?? │?? │?? │?? │?? │?? ├── CollectNodeAnd.js
│?? │?? │?? │?? │?? │?? ├── CollectNodeAndModel.js
│?? │?? │?? │?? │?? │?? ├── CollectNode.js
│?? │?? │?? │?? │?? │?? ├── CollectNodeModel.js
│?? │?? │?? │?? │?? │?? ├── DragablePanel.js
│?? │?? │?? │?? │?? │?? ├── EndNode.js
│?? │?? │?? │?? │?? │?? ├── EndNodeModel.js
│?? │?? │?? │?? │?? │?? ├── event
│?? │?? │?? │?? │?? │?? │?? ├── MetaNodeMouseListener.js
│?? │?? │?? │?? │?? │?? │?? ├── MetaNodeResizeMouseListener.js
│?? │?? │?? │?? │?? │?? │?? ├── MetaNodeTextKeyListener.js
│?? │?? │?? │?? │?? │?? │?? ├── MetaNodeTextMouseListener.js
│?? │?? │?? │?? │?? │?? │?? ├── TransitionMouseListener.js
│?? │?? │?? │?? │?? │?? │?? ├── TransitionTextKeyListener.js
│?? │?? │?? │?? │?? │?? │?? └── TransitionTextMouseListener.js
│?? │?? │?? │?? │?? │?? ├── ForkNodeAnd.js
│?? │?? │?? │?? │?? │?? ├── ForkNodeAndModel.js
│?? │?? │?? │?? │?? │?? ├── ForkNode.js
│?? │?? │?? │?? │?? │?? ├── ForkNodeModel.js
│?? │?? │?? │?? │?? │?? ├── JoinNodeAnd.js
│?? │?? │?? │?? │?? │?? ├── JoinNodeAndModel.js
│?? │?? │?? │?? │?? │?? ├── JoinNode.js
│?? │?? │?? │?? │?? │?? ├── JoinNodeModel.js
│?? │?? │?? │?? │?? │?? ├── MetaModel.js
│?? │?? │?? │?? │?? │?? ├── MetaNode.js
│?? │?? │?? │?? │?? │?? ├── MetaNodeModel.js
│?? │?? │?? │?? │?? │?? ├── NodeAttModel.js
│?? │?? │?? │?? │?? │?? ├── NodeAuto.js
│?? │?? │?? │?? │?? │?? ├── NodeAutoModel.js
│?? │?? │?? │?? │?? │?? ├── Node.js
│?? │?? │?? │?? │?? │?? ├── NodeModel.js
│?? │?? │?? │?? │?? │?? ├── NodeSub.js
│?? │?? │?? │?? │?? │?? ├── NodeSubModel.js
│?? │?? │?? │?? │?? │?? ├── StartNode.js
│?? │?? │?? │?? │?? │?? ├── StartNodeModel.js
│?? │?? │?? │?? │?? │?? ├── TransAttModel.js
│?? │?? │?? │?? │?? │?? ├── TransitionCompass.js
│?? │?? │?? │?? │?? │?? ├── Transition.js
│?? │?? │?? │?? │?? │?? └── TransitionModel.js
│?? │?? │?? │?? │?? ├── process
│?? │?? │?? │?? │?? │?? ├── GetProcess.js
│?? │?? │?? │?? │?? │?? └── UpdateProcess.js
│?? │?? │?? │?? │?? ├── StateMonitor.js
│?? │?? │?? │?? │?? ├── StatusLabel.js
│?? │?? │?? │?? │?? ├── TransitionMonitor.js
│?? │?? │?? │?? │?? ├── workbg.jpg
│?? │?? │?? │?? │?? ├── xiorkflow.css
│?? │?? │?? │?? │?? ├── XiorkFlow.js
│?? │?? │?? │?? │?? ├── XiorkFlowModelConverter.js
│?? │?? │?? │?? │?? ├── XiorkFlowModel.js
│?? │?? │?? │?? │?? ├── XiorkFlowTableViewer.js
│?? │?? │?? │?? │?? ├── XiorkFlowToolBar.js
│?? │?? │?? │?? │?? ├── XiorkFlowViewer.js
│?? │?? │?? │?? │?? ├── XiorkFlowViewPattern.js
│?? │?? │?? │?? │?? ├── XiorkFlowWrapper.js
│?? │?? │?? │?? │?? └── XiorkFlowXMLViewer.js
│?? │?? │?? │?? ├── XiorkFlowWorkSpace.js
│?? │?? │?? │?? └── xml
│?? │?? │?? │?? └── XMLDocument.js
│?? │?? │?? ├── WFHelp.aspx
│?? │?? │?? ├── WFInstanceList.aspx
│?? │?? │?? ├── WFList.aspx
│?? │?? │?? ├── WFPIOpinion.aspx
│?? │?? │?? ├── WFProcess.aspx
│?? │?? │?? ├── WFProcessView.aspx
│?? │?? │?? └── WFService.ashx
│?? │?? ├── Properties
│?? │?? │?? └── AssemblyInfo.cs
│?? │?? ├── TestList.aspx
│?? │?? ├── TestList.aspx.cs
│?? │?? ├── TestList.aspx.designer.cs
│?? │?? ├── TestStart.aspx
│?? │?? ├── TestStart.aspx.cs
│?? │?? ├── TestStart.aspx.designer.cs
│?? │?? ├── TestSubmit.aspx
│?? │?? ├── TestSubmit.aspx.cs
│?? │?? ├── TestSubmit.aspx.designer.cs
│?? │?? ├── Web.config
│?? │?? ├── Web.Debug.config
│?? │?? └── Web.Release.config
│?? ├── EDWorkFlow.sln
│?? ├── EDWorkFlow.suo
│?? ├── reference
│?? │?? ├── EDWFDesignTool.dll
│?? │?? ├── EDWFModel.dll
│?? │?? ├── EDWFModel.xml
│?? │?? ├── EDWorkFlow.dll
│?? │?? ├── EDWorkFlow.xml
│?? │?? ├── Telerik.Web.UI.dll
│?? │?? ├── Telerik.Web.UI.Skins.dll
│?? │?? └── Telerik.Web.UI.XML
│?? └── TestLibrary
│?? ├── bin
│?? │?? ├── Debug
│?? │?? │?? ├── EDWFModel.dll
│?? │?? │?? ├── EDWFModel.pdb
│?? │?? │?? ├── EDWFModel.xml
│?? │?? │?? ├── EDWorkFlow.dll
│?? │?? │?? ├── EDWorkFlow.pdb
│?? │?? │?? ├── EDWorkFlow.xml
│?? │?? │?? ├── TestLibrary.dll
│?? │?? │?? └── TestLibrary.pdb
│?? │?? └── Release
│?? │?? ├── EDWFModel.dll
│?? │?? ├── EDWFModel.pdb
│?? │?? ├── EDWorkFlow.dll
│?? │?? ├── EDWorkFlow.pdb
│?? │?? ├── TestLibrary.dll
│?? │?? └── TestLibrary.pdb
│?? ├── DataCache.cs
│?? ├── ExpandMethod.cs
│?? ├── obj
│?? │?? ├── 111
│?? │?? │?? ├── ClassLibrary1.csproj.FileListAbsolute.txt
│?? │?? │?? ├── ClassLibrary1.dll
│?? │?? │?? ├── DesignTimeResolveAssemblyReferencesInput.cache
│?? │?? │?? └── ResolveAssemblyReference.cache
│?? │?? ├── Debug
│?? │?? │?? ├── ClassLibrary1.csproj.FileListAbsolute.txt
│?? │?? │?? ├── DesignTimeResolveAssemblyReferencesInput.cache
│?? │?? │?? ├── ResolveAssemblyReference.cache
│?? │?? │?? ├── TestLibrary.csproj.FileListAbsolute.txt
│?? │?? │?? ├── TestLibrary.dll
│?? │?? │?? └── TestLibrary.pdb
│?? │?? └── Release
│?? │?? ├── DesignTimeResolveAssemblyReferencesInput.cache
│?? │?? ├── ResolveAssemblyReference.cache
│?? │?? ├── TestLibrary.csproj.FileListAbsolute.txt
│?? │?? ├── TestLibrary.dll
│?? │?? └── TestLibrary.pdb
│?? ├── Properties
│?? │?? └── AssemblyInfo.cs
│?? ├── SQLHelper.cs
│?? ├── TestContractModel.cs
│?? ├── TestDAL.cs
│?? ├── TestLibrary.csproj
│?? └── UserList.cs
├── Demo说明.doc
└── edworkflow说明.doc
37 directories, 239 files
本文地址:https://www.itbaoku.cn/example/43224996702f42a0ade55a14427bc0c4.html
查看更多