重构代码以使用Custom类而不是System提供的类

时间:2013-06-17 16:37:53

标签: c# winforms tabs

嗯,这可能是最愚蠢的问题,但我有一个困扰我的巨大问题。首先,我在运行时使用重新定位TabItems下的Mick Doherty's Tab Control Tips代码示例,允许在我的控件中拖放我的选项卡。问题是我使用名为ExtendedTabPage的自定义TabPage类,这会给我带来麻烦。我尝试使用as关键字进行投射或运行,但我希望有人帮我解决如何重构代码以允许拖动自定义标签。

编辑:我忘了提到ExtendedTabPage是一个由我的对象继承的抽象类(例如我的一个Windows属于继承ExtendedTabPage的ConsoleTab类)。这与问题本身有关吗?

编辑2:主要发现 - 在DragOver方法中,如果我尝试在typeof语句中使用ConsoleTab,它似乎完全正常。问题是我不想专门为这个类做这个,但是对于从其父类继承的所有类,这是抽象的(如果需要,我实际上可以将它转换为非抽象,但我不会主动使用它...)。

编辑3:也许一个好方法是使用索引直接交换并避免使用TabPage数据,但是我对如何做到这一点感到有点困惑......

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

using ReCodeConsole.Properties;

namespace ReCodeConsole.Core
{
    /// <summary>
    /// Implements all the extra functionality needed for tab pages on top of the existing TabControl.
    /// Includes events for DrawItem, MouseMove and MouseDown.
    /// </summary>
    public partial class ExtendedTabControl : TabControl
    {
        /// <summary>
        /// Initializes a new instance of the ExtendedTabControl class. All events are added.
        /// </summary>
        public ExtendedTabControl() :base()
        {
            this.DrawItem+=new DrawItemEventHandler(DrawTab);
            this.MouseClick+=new MouseEventHandler(Tab_OnMouseDown);
            this.MouseMove+=new MouseEventHandler(Tab_OnMouseMove);
            this.DragOver+=new DragEventHandler(Tab_OnDragOver);
        }
        /// <summary>
        /// Used to store the starting position of a tab drag event.
        /// </summary>
        private Point DragStartPosition = Point.Empty;

        private void DrawTab(object sender, DrawItemEventArgs e)
        {
            //
            //This code will render the close button at the end of the Tab caption.
            //
            e.Graphics.DrawImage(Resources.TabCloseButton, e.Bounds.Right - 22, e.Bounds.Top + 5, 14, 14);
            e.Graphics.DrawString(this.TabPages[e.Index].Text, e.Font, Brushes.Black, e.Bounds.Left + 12, e.Bounds.Top + 3);
            e.DrawFocusRectangle();
        }

        private void Tab_OnMouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
        {
            //
            // Regardless of where the MouseDown event originated, save the coordinates for dragging.
            //
            DragStartPosition = new Point(e.X, e.Y);

            #region Close Button Handling
            //
            // Close button code - looping through the controls.
            //
            for (int i = 0; i < this.TabPages.Count; i++)
            {
                Rectangle r = GetTabRect(i);
                //
                //Getting the position of the close button.
                //
                Rectangle closeButton = new Rectangle(r.Right - 22, r.Top + 5, 14, 14);
                if (closeButton.Contains(e.Location))
                {
                    if (this.TabPages[i] is ExtendedTabPage)
                    {
                        if ((this.TabPages[i] as ExtendedTabPage).IsCloseable)
                        {
                            if (MessageBox.Show("Are you sure you want to close this tab?", "Close", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                            {
                                this.TabPages.RemoveAt(i);
                                break;
                            }
                        }
                    }
                    else
                    {
                        if (MessageBox.Show("Are you sure you want to close this tab?", "Close", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
                            {
                                this.TabPages.RemoveAt(i);
                                break;
                            }
                     }
                }
            }
            #endregion

        }

        private TabPage HoverTab()
        {
            for (int index = 0; index <= TabCount - 1; index++)
            {
                if (GetTabRect(index).Contains(PointToClient(Cursor.Position)))
                    return (TabPage)TabPages[index];
            }
            return null;
        }

        private void Tab_OnDragOver(object sender, System.Windows.Forms.DragEventArgs e)
        {
            TabPage hover_Tab = HoverTab();
            if (hover_Tab == null)
                e.Effect = DragDropEffects.None;
            else
            {
                if (e.Data.GetDataPresent(typeof(TabPage)))
                {
                    e.Effect = DragDropEffects.Move;
                    TabPage drag_tab = (TabPage)e.Data.GetData(typeof(TabPage));

                    if (hover_Tab == drag_tab) return;

                    Rectangle TabRect = GetTabRect(TabPages.IndexOf(hover_Tab));
                    TabRect.Inflate(-3, -3);
                    if (TabRect.Contains(PointToClient(new Point(e.X, e.Y))))
                    {
                        SwapTabPages(drag_tab, hover_Tab);
                        SelectedTab = drag_tab;
                    }
                }
            }
        }
        private void Tab_OnMouseMove(object sender, System.Windows.Forms.MouseEventArgs e)
        {
            if (e.Button != MouseButtons.Left) return;

            Rectangle r = new Rectangle(DragStartPosition, Size.Empty);
            r.Inflate(SystemInformation.DragSize);

            TabPage tp = HoverTab();

            if (tp != null)
            {
                if (!r.Contains(e.X, e.Y))
                    DoDragDrop(tp, DragDropEffects.All);
            }
            DragStartPosition = Point.Empty;
        }

        private void SwapTabPages(TabPage tp1, TabPage tp2)
        {
            int Index1 = this.TabPages.IndexOf(tp1);
            int Index2 = this.TabPages.IndexOf(tp2);
            this.TabPages[Index1] = tp2;
            this.TabPages[Index2] = tp1;
        }
    }
}

现在忽略任何额外的东西,我给你整个代码以防万一其他事情搞砸了。所以回顾一下,我希望有人修复代码或至少解释如何执行此操作(或者如果不可能执行此操作),以便我能够在ExtendedTabPage项目之间交换而不是常规TabPage。我已经尝试过常规的TabPage对象,而我的自定义对象却没有。如果解决方案只包含其中一个(因此普通的TabPages无法工作),请只使用ExtendedTabPage,因为我可以将其余的东西转换为。我希望这不是真的愚蠢,而是我忽视某些事情的情况。

PS:我还检查了我链接的页面,找到了一个适用于自定义类的解决方案,但没有运气,因为它导致我两次问题,一半的代码甚至打破了正确的程序集引用,所以这不是一个实物期权。 :/

1 个答案:

答案 0 :(得分:1)

好吧,因为似乎没有人知道解决方案,经过过度的测试和调整以及网站上的一些非常幸运的发现,即How to deal with GetDataPresent to let it accept all the derived typesC# Drag and Drop - e.Data.GetData using a base class,我很高兴地报告问题很容易足以通过替换GetPresentDataGetData来电来解决。我提供了Tab_OnDragOver的调整代码,这是问题产生的地方,我希望一切正常,对于那些点击此页并寻找解决方案的人来说!

private void Tab_OnDragOver(object sender, System.Windows.Forms.DragEventArgs e)
        {
            TabPage hover_Tab = HoverTab();
            if (hover_Tab == null)
                e.Effect = DragDropEffects.None;
            else
            {
                var drag_tab = e.Data.GetData(e.Data.GetFormats()[0]);
                if (typeof(TabPage).IsAssignableFrom(drag_tab.GetType()))
                {
                    e.Effect = DragDropEffects.Move;

                    if (hover_Tab == drag_tab) return;

                    Rectangle TabRect = GetTabRect(TabPages.IndexOf(hover_Tab));
                    TabRect.Inflate(-3, -3);
                    if (TabRect.Contains(PointToClient(new Point(e.X, e.Y))))
                    {
                        SwapTabPages(drag_tab as TabPage, hover_Tab);
                        SelectedTab = drag_tab as TabPage;
                    }
                }
            }
        }