using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Business = SuperMap.RealEstate.Personnel.Storage.Business; namespace SuperMap.RealEstate.Personnel.Modules.Personnelfiles { public partial class STAFFTree : SuperMap.RealEstate.Web.UI.Page { private Business.SALARY _SALARY = null; protected void Page_Load(object sender, EventArgs e) { if (IsPostBack) return; try { this.FixTreeViewDoubleClick(MyTreeView, true); SetControlClientAction(ButtonSearch); TreeViewBinding(false); } catch (Exception ex) { throw ex; } finally { } } private void TreeViewBinding(bool withChildNodes) { _SALARY = new Business.SALARY(this.Transaction); MyTreeView.Nodes.Clear(); _SALARY.BindingTreeView("-1", this.MyTreeView.Nodes, this.TextBoxSearch.Text, true, "1234", "STAFFList.aspx"); } protected void MyTreeView_TreeNodePopulate(object sender, TreeNodeEventArgs e) { if (_SALARY == null) _SALARY = new Business.SALARY(this.Transaction); _SALARY.BindingTreeView(e.Node.Value, e.Node.ChildNodes, this.TextBoxSearch.Text, true, "1234", "STAFFList.aspx"); } protected void ButtonSearch_Click(object sender, EventArgs e) { TreeViewBinding(false); } protected void Expand_Click(object sender, EventArgs e) { if (Expand.Text == "收起↑") { //foreach (TreeNode _TreeNode in MyTreeView.Nodes) //{ // _TreeNode.Expanded = false; //} MyTreeView.CollapseAll(); Expand.Text = "展开↓"; } else if (Expand.Text == "展开↓") { MyTreeView.ExpandAll(); Expand.Text = "收起↑"; } } } }