41 lines
976 B
C#
41 lines
976 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using WMS.Frm.Base;
|
|
using WMS.Model.Base;
|
|
using WMS.Common;
|
|
using WMS.Model.SystemManage;
|
|
using DevExpress.XtraEditors.Repository;
|
|
using DevExpress.XtraTreeList.Nodes;
|
|
using WMS.Business;
|
|
using WMS.Business.Base;
|
|
|
|
namespace WMS.FrmSystems
|
|
{
|
|
public partial class FrmUserShow : FormBase
|
|
{
|
|
List<UserDataModel> listUserModel = new List<UserDataModel>();
|
|
public FrmUserShow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void bind()
|
|
{
|
|
listUserModel = IBussFactory<BussSystemUser>.Instance().GetUserInfo();
|
|
gridControl1.DataSource = listUserModel;
|
|
layoutView1.RefreshData();
|
|
}
|
|
|
|
private void FrmUserShow_Load(object sender, EventArgs e)
|
|
{
|
|
bind();
|
|
}
|
|
}
|
|
}
|