Example #1
0
        // =================================
        // Custom events
        // =================================

        private void OnDumpDropped()
        {
            m_treeSortPropery = null;

            LeftDump.HideDragAndDrop();
            RightDump.HideDragAndDrop();
            LeftDump.ShowDumpView();
            RightDump.ShowDumpView();
        }
Example #2
0
        private void OnTypeTreeBackClicked()
        {
            LeftDump.ShowDumpView();
            RightDump.ShowDumpView();
            ListViewItem listItem = (ListViewItem)RightDump.DumpListView.ItemContainerGenerator.ContainerFromIndex(RightDump.DumpListView.SelectedIndex);

            if (listItem != null)
            {
                listItem.Focus();
            }
        }