using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using SuperMap.RealEstate.Web.Utility; namespace SuperMap.RealEstate.Personnel.Modules.SalaryStatistics { public partial class ObjectTree : SuperMap.RealEstate.Web.UI.PageValid { private Storage.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 Storage.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 Storage.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; } Expand.Text = "展开↓"; } else if (Expand.Text == "展开↓") { MyTreeView.ExpandAll(); Expand.Text = "收起↑"; } } } }