Catrobat.IDE.WindowsPhone.Controls.ListsViewControls.CatrobatListView.CatrobatListViewMisc.CatrobatListViewEventArgs.CatrobatListViewEventArgs C# (CSharp) Method

CatrobatListViewEventArgs() public method

public CatrobatListViewEventArgs ( CatrobatListViewEmptyDummyControl tmpControl, CatrobatListViewDragObject orignalControl, IList addedSelectedItems, IList removedSelectedItems, IList groupedItems ) : System
tmpControl CatrobatListViewEmptyDummyControl
orignalControl CatrobatListViewDragObject
addedSelectedItems IList
removedSelectedItems IList
groupedItems IList
return System
        public CatrobatListViewEventArgs(CatrobatListViewEmptyDummyControl tmpControl, CatrobatListViewDragObject orignalControl,
            IList<object> addedSelectedItems, IList<object> removedSelectedItems, IList<object> groupedItems)
        {
            _tmpControl = tmpControl;
            _orignalControl = orignalControl;
            _addedSelectedItems = addedSelectedItems;
            _removedSelectedItems = removedSelectedItems;
            _groupedItems = groupedItems;
        }