hMailServer.Administrator.ucItemsView.LoadData C# (CSharp) Method

LoadData() public method

public LoadData ( ) : void
return void
        public void LoadData()
        {
            ListView listView = GetListView();
            if (listView != null)
            {
                listView.SelectedIndexChanged += new System.EventHandler(this.OnSelectedIndexChanged);
                listView.DoubleClick += new System.EventHandler(this.OnDoubleClick);
            }

            LoadList();
        }