Example #1
0
        public override Section[] GetExpandedDragList()
        {
            List <Section> sections = new List <Section>();

            foreach (Section s in ListSection.Children)
            {
                RowSection rowSection = s as RowSection;
                if (rowSection != null && rowSection.IsSelected)
                {
                    sections.Add(rowSection);
                }
            }
            return(sections.ToArray());
        }
Example #2
0
 protected virtual void OnRowDoubleClicked( RowSection rowSection )
 {
     if( RowDoubleClicked != null )
     {
         RowDoubleClicked( rowSection, EventArgs.Empty );
     }
 }