Current filter:
                                You should refresh the page.
                                0
                                  • When using a tab manager with a derived tab page class, the rearrange tabs by dragging no longer works.

                                    Cause is due to a code bug in XtraTabbedMdiManager.DoDragDrop

                                              protected virtual void DoDragDrop() {
                                                   if(!InTheAir)
                                                        return;
                                                   XtraMdiTabPage page = SelectedPage;
                                                   if(page == null)
                                                        return;
                                                   IDataObject data = new XtraTabbedMdiDataObject(page);
                                    // Error here: 1st parameter should be 'data', not 'page'.
                                                   DragDropEffects effects = MdiClientEncapsulator.ClientWindow.DoDragDrop(page, DragDropEffects.Scroll);
                                              }

                                You must  log in  or  register  to leave an answer

                                Is your intention to post an answer to your own question?

                                • If so, then proceed.
                                • If you simply wanted to post additional information, ask for further clarification, or to just say "Thanks!", please click Leave a Comment.
                                • If you wish to edit your original question, please use the Edit button in the Toolbox at the top right corner of that entry.