• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

C# FlowLayoutPanel类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中System.Windows.Forms.FlowLayoutPanel的典型用法代码示例。如果您正苦于以下问题:C# FlowLayoutPanel类的具体用法?C# FlowLayoutPanel怎么用?C# FlowLayoutPanel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



FlowLayoutPanel类属于System.Windows.Forms命名空间,在下文中一共展示了FlowLayoutPanel类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: wrapContentsCheckBox_CheckedChanged

//引入命名空间
using System;
using System.Windows.Forms;

public class Form1 : System.Windows.Forms.Form
{
    private void wrapContentsCheckBox_CheckedChanged(
        System.Object sender, 
        System.EventArgs e)
    {
        this.FlowLayoutPanel1.WrapContents = 
            this.wrapContentsCheckBox.Checked;
    }

    private void flowTopDownBtn_CheckedChanged(
        System.Object sender, 
        System.EventArgs e)
    {
        this.FlowLayoutPanel1.FlowDirection = FlowDirection.TopDown;
    }

    private void flowBottomUpBtn_CheckedChanged(
        System.Object sender, 
        System.EventArgs e)
    {
        this.FlowLayoutPanel1.FlowDirection = FlowDirection.BottomUp;
    }

    private void flowLeftToRight_CheckedChanged(
        System.Object sender, 
        System.EventArgs e)
    {
        this.FlowLayoutPanel1.FlowDirection = FlowDirection.LeftToRight;
    }

    private void flowRightToLeftBtn_CheckedChanged(
        System.Object sender, 
        System.EventArgs e)
    {
        this.FlowLayoutPanel1.FlowDirection = FlowDirection.RightToLeft;
    }

#region " Windows Form Designer generated code "

    public Form1() : base()
    {        

        //This call is required by the Windows Form Designer.
        InitializeComponent();

        //Add any initialization after the InitializeComponent() call
    }

    //Form overrides dispose to clean up the component list.
    protected override void Dispose(bool disposing)
    {
        if (disposing)
        {
            if (components != null)
            {
                components.Dispose();
            }
        }
        base.Dispose(disposing);
    }

    private System.Windows.Forms.FlowLayoutPanel FlowLayoutPanel1;
    private System.Windows.Forms.CheckBox wrapContentsCheckBox;
    private System.Windows.Forms.RadioButton flowTopDownBtn;
    private System.Windows.Forms.RadioButton flowBottomUpBtn;
    private System.Windows.Forms.RadioButton flowLeftToRight;
    private System.Windows.Forms.RadioButton flowRightToLeftBtn;
    private System.Windows.Forms.Button Button1;
    private System.Windows.Forms.Button Button2;
    private System.Windows.Forms.Button Button3;
    private System.Windows.Forms.Button Button4;

    //Required by the Windows Form Designer
    private System.ComponentModel.IContainer components;

    //NOTE: The following procedure is required by the Windows Form Designer
    //It can be modified using the Windows Form Designer.  
    //Do not modify it using the code editor.
    [System.Diagnostics.DebuggerNonUserCode]
    private void InitializeComponent()
    {
        this.FlowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
        this.Button1 = new System.Windows.Forms.Button();
        this.Button2 = new System.Windows.Forms.Button();
        this.Button3 = new System.Windows.Forms.Button();
        this.Button4 = new System.Windows.Forms.Button();
        this.wrapContentsCheckBox = new System.Windows.Forms.CheckBox();
        this.flowTopDownBtn = new System.Windows.Forms.RadioButton();
        this.flowBottomUpBtn = new System.Windows.Forms.RadioButton();
        this.flowLeftToRight = new System.Windows.Forms.RadioButton();
        this.flowRightToLeftBtn = new System.Windows.Forms.RadioButton();
        this.FlowLayoutPanel1.SuspendLayout();
        this.SuspendLayout();
// 
// FlowLayoutPanel1
// 
        this.FlowLayoutPanel1.Controls.Add(this.Button1);
        this.FlowLayoutPanel1.Controls.Add(this.Button2);
        this.FlowLayoutPanel1.Controls.Add(this.Button3);
        this.FlowLayoutPanel1.Controls.Add(this.Button4);
        this.FlowLayoutPanel1.Location = new System.Drawing.Point(47, 55);
        this.FlowLayoutPanel1.Name = "FlowLayoutPanel1";
        this.FlowLayoutPanel1.TabIndex = 0;
// 
// Button1
// 
        this.Button1.Location = new System.Drawing.Point(3, 3);
        this.Button1.Name = "Button1";
        this.Button1.TabIndex = 0;
        this.Button1.Text = "Button1";
// 
// Button2
// 
        this.Button2.Location = new System.Drawing.Point(84, 3);
        this.Button2.Name = "Button2";
        this.Button2.TabIndex = 1;
        this.Button2.Text = "Button2";
// 
// Button3
// 
        this.Button3.Location = new System.Drawing.Point(3, 32);
        this.Button3.Name = "Button3";
        this.Button3.TabIndex = 2;
        this.Button3.Text = "Button3";
// 
// Button4
// 
        this.Button4.Location = new System.Drawing.Point(84, 32);
        this.Button4.Name = "Button4";
        this.Button4.TabIndex = 3;
        this.Button4.Text = "Button4";
// 
// wrapContentsCheckBox
// 
        this.wrapContentsCheckBox.Location = new System.Drawing.Point(46, 162);
        this.wrapContentsCheckBox.Name = "wrapContentsCheckBox";
        this.wrapContentsCheckBox.TabIndex = 1;
        this.wrapContentsCheckBox.Text = "Wrap Contents";
        this.wrapContentsCheckBox.CheckedChanged += new System.EventHandler(this.wrapContentsCheckBox_CheckedChanged);
// 
// flowTopDownBtn
// 
        this.flowTopDownBtn.Location = new System.Drawing.Point(45, 193);
        this.flowTopDownBtn.Name = "flowTopDownBtn";
        this.flowTopDownBtn.TabIndex = 2;
        this.flowTopDownBtn.Text = "Flow TopDown";
        this.flowTopDownBtn.CheckedChanged += new System.EventHandler(this.flowTopDownBtn_CheckedChanged);
// 
// flowBottomUpBtn
// 
        this.flowBottomUpBtn.Location = new System.Drawing.Point(44, 224);
        this.flowBottomUpBtn.Name = "flowBottomUpBtn";
        this.flowBottomUpBtn.TabIndex = 3;
        this.flowBottomUpBtn.Text = "Flow BottomUp";
        this.flowBottomUpBtn.CheckedChanged += new System.EventHandler(this.flowBottomUpBtn_CheckedChanged);
// 
// flowLeftToRight
// 
        this.flowLeftToRight.Location = new System.Drawing.Point(156, 193);
        this.flowLeftToRight.Name = "flowLeftToRight";
        this.flowLeftToRight.TabIndex = 4;
        this.flowLeftToRight.Text = "Flow LeftToRight";
        this.flowLeftToRight.CheckedChanged += new System.EventHandler(this.flowLeftToRight_CheckedChanged);
// 
// flowRightToLeftBtn
// 
        this.flowRightToLeftBtn.Location = new System.Drawing.Point(155, 224);
        this.flowRightToLeftBtn.Name = "flowRightToLeftBtn";
        this.flowRightToLeftBtn.TabIndex = 5;
        this.flowRightToLeftBtn.Text = "Flow RightToLeft";
        this.flowRightToLeftBtn.CheckedChanged += new System.EventHandler(this.flowRightToLeftBtn_CheckedChanged);
// 
// Form1
// 
        this.ClientSize = new System.Drawing.Size(292, 266);
        this.Controls.Add(this.flowRightToLeftBtn);
        this.Controls.Add(this.flowLeftToRight);
        this.Controls.Add(this.flowBottomUpBtn);
        this.Controls.Add(this.flowTopDownBtn);
        this.Controls.Add(this.wrapContentsCheckBox);
        this.Controls.Add(this.FlowLayoutPanel1);
        this.Name = "Form1";
        this.Text = "Form1";
        this.FlowLayoutPanel1.ResumeLayout(false);
        this.ResumeLayout(false);
    }

#endregion
}
开发者ID:.NET开发者,项目名称:System.Windows.Forms,代码行数:194,代码来源:FlowLayoutPanel



注:本文中的System.Windows.Forms.FlowLayoutPanel类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# FolderBrowserDialog类代码示例发布时间:2022-05-26
下一篇:
C# FileDialogCustomPlacesCollection类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap