在 Visual Studio C# 中使用动态数量的选项卡创建选项卡控件

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/1084098/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-06 07:48:35  来源:igfitidea点击:

Creating a tab control with a dynamic number of tabs in Visual Studio C#

c#visual-studio

提问by Alex

How to create a tab control with a dynamic number of tabs in Visual Studio C#?

如何在 Visual Studio C# 中使用动态数量的选项卡创建选项卡控件?

I've got a database with a table customers. I need to create a form that would show tabs with the first letters of customers' last name (only those first letters, for which there are entries in the table should be present). Each tab should contain a DataGrid control with the corresponding customers. I connect to the database using DataSet.

我有一个带表的数据库customers。我需要创建一个表单,该表单将显示带有客户姓氏首字母的选项卡(只有那些首字母,表中应该存在条目)。每个选项卡都应包含一个带有相应客户的 DataGrid 控件。我使用 DataSet 连接到数据库。

Where should I insert the code snippet that would generate such tabs? Can I do that with the existing tab control or should I create a custom control?

我应该在哪里插入生成此类选项卡的代码片段?我可以使用现有的选项卡控件来做到这一点,还是应该创建一个自定义控件?

采纳答案by nos

You can generate dynamic tabs with the existing TabControl. Here is an example of how it can be done in a somewhat sort of pseudo code form...

您可以使用现有的 TabControl 生成动态选项卡。这是一个如何以某种伪代码形式完成的示例......

TabControl tabControl = new TabControl();
tabControl.Dock = DockStyle.Fill;

foreach (Char c in lastNameList)
{
    TabPage tabPage = new TabPage();
    tabPage.Text = c.ToString();

    DataGrid grid = new DataGrid();

    grid.Dock = DockStyle.Fill;
    grid.DataSource = dataForTheCurrentLoop;

    tabPage.Controls.Add(grid);
    tabControl.Controls.Add(tabPage);
}

this.Controls.Add(tabControl);

回答by Timothy Carter

It sounds like the best route for you would be to create your own custom tab control class. It could inherit from tab control for the bulk of its functionality and properties for the datagrid and whatever else custom you need. Then when you get your customers, you can create a tab for each letter you need and setup the corresponding properties.

听起来对您来说最好的方法是创建自己的自定义选项卡控件类。它可以从选项卡控件继承数据网格的大部分功能和属性以及您需要的任何其他自定义。然后,当您获得客户时,您可以为您需要的每个字母创建一个选项卡并设置相应的属性。

回答by Greg D

You would add the code to generate the tabs where you determine what letters are required to be shown, probably when you either retrieve the data or in the form's OnLoad()method. You should be able to dynamically add/remove tabs from the built-in tab control. You can check the designer code for some idea how to do it, or the docs.

您将添加代码以生成选项卡,您可以在其中确定需要显示哪些字母,可能是在检索数据时或在表单的OnLoad()方法中。您应该能够从内置选项卡控件中动态添加/删除选项卡。您可以查看设计器代码以了解如何操作或查看文档。

Note that it isn't necessarily a good idea to add a separate tab for each character. 26 tabs (which will happen when your database gets reasonably large) is a pretty awful number of tabs for someone to look through-- it won't necessarily make things faster at all.

请注意,为每个字符添加单独的选项卡不一定是个好主意。26 个选项卡(当您的数据库变得相当大时会发生这种情况)对于某些人来说是一个非常可怕的选项卡数量 - 它根本不会使事情变得更快。

Instead, consider providing a dynamic filtering mechanism, similar to the search box on Vista's start menu. Your user can type a single character (assuming you aren't writing some sort of kiosk or touch-screen-only software) and zoom immediately to the relevant names. This would work ideally with a ListViewin List or Details mode.

相反,请考虑提供动态过滤机制,类似于 Vista 开始菜单上的搜索框。您的用户可以输入单个字符(假设您不是在编写某种信息亭或纯触摸屏软件)并立即缩放到相关名称。这将ListView在列表或详细信息模式下理想地工作。

回答by nos

I don't remember the specifics now. But just look at the code in the XXX.designer.cs file for a form you have that contains a tab control. There you'll see the code generated to add a new tab. Just replicate those lines, you can add a new tab whenever you want.

我现在不记得具体情况了。但是只需查看 XXX.designer.cs 文件中的代码,即可获得包含选项卡控件的表单。在那里,您将看到生成的用于添加新选项卡的代码。只需复制这些行,您就可以随时添加新选项卡。