如何处理在.NET的WinForms堆叠控件? [英] How to handle stacked controls in .NET Winforms?

查看:155
本文介绍了如何处理在.NET的WinForms堆叠控件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有将多个面板控制堆叠在彼此的顶部上的形式,被显示的每一个/隐藏基于所述表格上的其他选择的选项。这是一个真正的痛苦,在表单设计器,以管理为面板不表现得像一个完整的TabControl。然而,它并不像你可以使用一个的TabControl没有标签。什么是处理这一问题的最佳方法是什么?有没有像TabControl的控制,但没有标签?

I have a form that will multiple Panel controls stacked on top of each other, each one being shown/hidden based on other selected options on the form. This has been a real pain to manage in the form designer as the panels don't behave like a full TabControl. However, it doesn't look like you can use a TabControl without the tabs. What is the best way to handle this? Is there a control like the TabControl, but without the tabs?

推荐答案

您可以隐藏的标签,在设计非常方便。添加一个新类到您的项目并粘贴此code:

You can hide the tabs, very convenient in the designer. Add a new class to your project and paste this code:

using System;
using System.Windows.Forms;

public class TablessControl : TabControl {
  protected override void WndProc(ref Message m) {
    // Hide tabs by trapping the TCM_ADJUSTRECT message
    if (m.Msg == 0x1328 && !DesignMode) m.Result = (IntPtr)1;
    else base.WndProc(ref m);
  }
}

这篇关于如何处理在.NET的WinForms堆叠控件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆