在C#WinForms中设计自定义TabPage?

时间:2012-03-02 14:48:39

标签: c# winforms user-controls tabs

我有一个c#WinForm应用程序,我需要在运行时生成TabPages。理想情况下,我想使用VS设计器设计这些标签页,但似乎我不能直接这样做,因为我无法从工具箱中拖放它(有另一种方式吗?)。

我有两个通用的tabpages,我将多次使用。一个包含一个简单的电子表格和一对文本框,另一个包含图形和几个文本框。这些页面最终会变得更复杂。我正在寻找最好的方法。我目前只是为每个标签页创建自定义类并将其设置为TabPage基类。例如:

public partial class SpreadsheetTabPage : TabPage{} 

我读到用户控件提供某种形式的替代方案,但我并不真正理解使用它与我的方法相比的优势。

所以要明确,我想知道您认为开发这些自定义标签页的最佳方法以及原因。如果相关,请提供基本代码示例。我的方法并没有真正造成太多问题,但我认为稍后在这些页面上添加内容会很困难,尤其是在不使用设计器的情况下。

提前感谢您的帮助!

3 个答案:

答案 0 :(得分:6)

您可以创建自己的TabControl设计器,并在设计时实现您需要的功能。以下是此类设计器最简单版本的代码:

using System;
using System.Drawing;
using System.Collections;
using System.Windows.Forms;
using System.Windows.Forms.Design;
using System.ComponentModel.Design;
using CustomTabControlExample.TabControl;

namespace CustomTabControlExample.Design {
    public class CustomTabControlDesigner :ParentControlDesigner {
        DesignerVerbCollection fVerbs;
        public override DesignerVerbCollection Verbs {
            get {
                if (fVerbs == null)
                    fVerbs = new DesignerVerbCollection(new DesignerVerb[] {
                        new DesignerVerb("Add Tab", OnAdd)
                        });
                return fVerbs;
            }
        }

        void OnAdd(object sender, EventArgs e) {
            TabPage newPage = (TabPage)((IDesignerHost)GetService(typeof(IDesignerHost))).CreateComponent(
                typeof(CustomTabPage));
            newPage.Text = newPage.Name;
            ((System.Windows.Forms.TabControl)Component).TabPages.Add(newPage);
        }

        public override void InitializeNewComponent(IDictionary defaultValues) {
            base.InitializeNewComponent(defaultValues);
            for (int i = 0; i < 2; i++)
                OnAdd(this, EventArgs.Empty);
        }

        protected override void WndProc(ref Message m) {
            base.WndProc(ref m);
            // Selection of tabs via mouse
            if (m.Msg == 0x201/*WM_LBUTTONDOWN*/) {
                System.Windows.Forms.TabControl control = (System.Windows.Forms.TabControl)Component;
                int lParam = m.LParam.ToInt32();
                Point hitPoint = new Point(lParam & 0xffff, lParam >> 0x10);
                if (Control.FromHandle(m.HWnd) == null) // Navigation
                    if (hitPoint.X < 18 && control.SelectedIndex > 0) // Left
                        control.SelectedIndex--;
                    else control.SelectedIndex++; // Right
                else // Header click
                    for (int i = 0; i < control.TabCount; i++)
                        if (control.GetTabRect(i).Contains(hitPoint)) {
                            control.SelectedIndex = i;
                            return;
                        }
            }
        }

        protected override void OnDragDrop(DragEventArgs de) {
            ((IDropTarget)((System.Windows.Forms.TabControl)Component).SelectedTab).OnDragDrop(de);
        }

        protected override void OnDragEnter(DragEventArgs de) {
            ((IDropTarget)((System.Windows.Forms.TabControl)Component).SelectedTab).OnDragEnter(de);
        }

        protected override void OnDragLeave(EventArgs e) {
            ((IDropTarget)((System.Windows.Forms.TabControl)Component).SelectedTab).OnDragLeave(e);
        }

        protected override void OnDragOver(DragEventArgs de) {
            ((IDropTarget)((System.Windows.Forms.TabControl)Component).SelectedTab).OnDragOver(de);
        }
    }
}

这似乎是一种非常复杂的方式,但是一旦你学会了它,你会对Visual Studio提供的强大功能印象深刻。您可以在MSDN中找到大量信息。以下是最常见的功能:Enhancing Design-Time Support

答案 1 :(得分:3)

如果您创建一个包含tabcontrol的用户控件,您可以看到设计器并根据需要进行设计,并且您可以添加一些额外的代码,并且仍然可以拖动&amp;从工具箱中删除它以使用它。

注意:您无法看到用户控件(既不是您的手动编码类),直到您重建您的项目

答案 2 :(得分:2)

我遇到了同样的问题。在思考这个问题后,我意识到解决方案正在盯着我。它实际上非常基本和优雅。

我所做的是创建了一个名为TabPageLibrary的UserControl。因此我在它上面拖了一个TabControl并根据我想要的设置添加了页面。然后我将TabPage修饰符设置为internal。当我需要一个特定的扩展TabPage时 - 我只需调用TabPageLibrary类并获取特定应用程序所需的TabPage。这使我能够在整个winform应用程序中重用特定的预配置TabPage

private void PropertiesButton_Click(object sender, EventArgs e)
{
TabPageLibrary library = new TabPageLibrary();
TabPage propertyPage = library.PropertyPage;
this.tabControl.TabPages.Add(propertyPage);
}

这肯定解决了我的问题 - 也许它适用于您的应用程序。