Exemple #1
0
        public Flow_ModelDefineClient modelClient = null; //流程模块WCF定义
        #endregion

        public FlowView()
        {
            InitializeComponent();
            modelClient = new Flow_ModelDefineClient();                                             //实例化流程模块
            RegisterEvents();
            tvFlow.OnSelectionChanged += new TreeControl.SelectionChanged(tvFlow_SelectionChanged); //树形选择事件
            if (WfUtils.StateList == null)
            {
                permissionClient.GetSysRoleInfosAsync("", "");
            }

            modelClient.GetSystemCodeModelCodeListAsync(); //绑定树
            ucFlowlist.BindFlowList("", "");               //绑定列表
        }
Exemple #2
0
        public Flow_ModelDefineClient modelClient = null; //流程模块WCF定义
        #endregion

        public FlowView()
        {
            InitializeComponent();
            modelClient = new Flow_ModelDefineClient(); //实例化流程模块            
            RegisterEvents(); 
            tvFlow.OnSelectionChanged += new TreeControl.SelectionChanged(tvFlow_SelectionChanged);  //树形选择事件
            if (WfUtils.StateList == null)
            {
                permissionClient.GetSysRoleInfosAsync("", "");
            }

            modelClient.GetSystemCodeModelCodeListAsync();//绑定树
            ucFlowlist.BindFlowList("", "");//绑定列表

          
        }
Exemple #3
0
 public void EngineInit()
 {
     RegisterCompletedEvent();
     client.GetSystemCodeModelCodeListAsync();
 }