该组件的名称是什么
请说出这个组件的名称,c# 有吗?
Please say name of this component and does c# have it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
请说出这个组件的名称,c# 有吗?
Please say name of this component and does c# have it?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
正如其他人所建议的,由于它在 Microsoft Outlook 应用程序中最著名的用法,因此通常称为 Outlook 栏。
大多数第三方控制套件都提供类似的功能,但如果您正在寻找免费且易于定制的功能,您可以查看 OutlookBar 控件可在 CodeProject 上使用:
控件本身非常简单,并且完全在托管 C# 代码中作为
UserControl
实现。它应该在所有版本的.NET Framework 回到 1.1,并且可以轻松集成到您的应用程序中。最重要的是,源代码可免费下载,可以无限定制以满足您的特定需求!
As others have suggested, this is commonly called an Outlook Bar after it's most famous usage in the Microsoft Outlook application.
Something similar is available in most third-party control suites, but if you're looking for something that is free and easily customizable, you might check out the OutlookBar control available on CodeProject:
The control itself is pretty simple, and implemented entirely in managed C# code as a
UserControl
.It should work under all versions of the .NET Framework back to 1.1, and is painless to integrate into your application. Best of all, with the source code freely downloadable, it's infinitely customizable to fit your specific needs!
我认为它被称为手风琴,至少在 jQuery 中是这样。
我不知道 C# 附带的基本控件中有任何这样的组件,但我确信有很多像这样的第三方组件。
ComponentArts 或 Telerik。
I think it is called accordion, at least in jQuery.
And I do not know of any such in the basic controlles that comes with c# but I am cetrain that there are many 3:rd party components like this.
ComponentArts or Telerik are the first that comes to mind.
在 WinForms 中,这称为 Outlook 栏或导航栏。
大多数(如果不是全部)第三方控制套件,例如 DevExpress,提供它。
In WinForms, this is called an Outlook Bar or Navigation bar.
Most (if not all) third-party control suites, such as DevExpress, offer it.
我认为它的名称是
Accordion
并且它本身并不存在于 Windows 窗体体系结构中。I think its name is
Accordion
and it doesn't exists natively on Windows Forms Architecture.手风琴?尝试在不同的控制工具包中搜索 - 应该有一个实现。
Accordion ? Try searching among different control toolkits - there should be an implementation.