Beispiel #1
0
        private void MoveGraphDown()
        {
            if (XenObject == null)
            {
                return;
            }

            int index = GraphList.SelectedGraphIndex;

            if (GraphList.AuthorizedRole)
            {
                GraphList.ExchangeGraphs(index, index + 1);
                GraphList.SaveGraphs(null);
            }
        }