toolStripContainer 怎么实现折叠功能
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了toolStripContainer 怎么实现折叠功能相关的知识,希望对你有一定的参考价值。
参考技术A using System;using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
public class Form1 : Form
private ToolStripContainer toolStripContainer1;
private ToolStrip toolStrip1;
public Form1()
InitializeComponent();
[STAThread]
static void Main()
Application.EnableVisualStyles();
Application.Run(new Form1());
private void InitializeComponent()
toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
toolStrip1 = new System.Windows.Forms.ToolStrip();
// Add items to the ToolStrip.
toolStrip1.Items.Add("One");
toolStrip1.Items.Add("Two");
toolStrip1.Items.Add("Three");
// Add the ToolStrip to the top panel of the ToolStripContainer.
toolStripContainer1.TopToolStripPanel.Controls.Add(toolStrip1);
// Add the ToolStripContainer to the form.
Controls.Add(toolStripContainer1);
转载,仅供参考。本回答被提问者和网友采纳
深入浅出Flask(37): H-ui前端框架的折叠框
有时候会有比较多的内容要展示,但限制屏幕的面积有限,不能同时展示那么多内容,这时候就会需要使用折叠框的设计,动态地根据用户的需求来展示出来,让用户使用起来更加方便快捷。这种方式在导航和内容显示方面使用比较多。本文将来学习怎么样实现折叠框的实现,如下图所示:
在这里先要编写HTML代码:
<div class="l" style="width:48%">
<p><strong>点击效果</strong></p>
<
以上是关于toolStripContainer 怎么实现折叠功能的主要内容,如果未能解决你的问题,请参考以下文章
C# toolStripContainer控件 和 DockPanel控件 一起用
C#菜单和工具栏之contextMenuStripmenuStripstatusStriptoolStrip和toolStripContainer