C#中Panel容器裡面的Button自動排序

来源:http://www.cnblogs.com/liuhuanping/archive/2017/05/11/6839917.html
-Advertisement-
Play Games

在頁面中添加Panel容器和Button控制項 這是設計器代碼 namespace WinForm { partial class DefaultForm { /// <summary> /// 必需的設計器變數。 /// </summary> private System.ComponentMode ...


在頁面中添加Panel容器和Button控制項

這是設計器代碼

namespace WinForm
{
    partial class DefaultForm
    {
        /// <summary>
        /// 必需的設計器變數。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的資源。
        /// </summary>
        /// <param name="disposing">如果應釋放托管資源,為 true;否則為 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗體設計器生成的代碼

        /// <summary>
        /// 設計器支持所需的方法 - 不要
        /// 使用代碼編輯器修改此方法的內容。
        /// </summary>
        private void InitializeComponent()
        {
            this.plBaseButtom = new System.Windows.Forms.Panel();
            this.btnNew = new System.Windows.Forms.Button();
            this.btnSave = new System.Windows.Forms.Button();
            this.btnExit = new System.Windows.Forms.Button();
            this.plBaseButtom.SuspendLayout();
            this.SuspendLayout();
            // 
            // plBaseButtom
            // 
            this.plBaseButtom.Controls.Add(this.btnNew);
            this.plBaseButtom.Controls.Add(this.btnSave);
            this.plBaseButtom.Controls.Add(this.btnExit);
            this.plBaseButtom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.plBaseButtom.Location = new System.Drawing.Point(0, 197);
            this.plBaseButtom.Name = "plBaseButtom";
            this.plBaseButtom.Size = new System.Drawing.Size(611, 50);
            this.plBaseButtom.TabIndex = 0;
            // 
            // btnNew
            // 
            this.btnNew.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnNew.Location = new System.Drawing.Point(362, 15);
            this.btnNew.Name = "btnNew";
            this.btnNew.Size = new System.Drawing.Size(75, 23);
            this.btnNew.TabIndex = 0;
            this.btnNew.Text = "新增";
            this.btnNew.UseVisualStyleBackColor = true;
            // 
            // btnSave
            // 
            this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnSave.Enabled = false;
            this.btnSave.Location = new System.Drawing.Point(443, 15);
            this.btnSave.Name = "btnSave";
            this.btnSave.Size = new System.Drawing.Size(75, 23);
            this.btnSave.TabIndex = 1;
            this.btnSave.Text = "保存";
            this.btnSave.UseVisualStyleBackColor = true;
            // 
            // btnExit
            // 
            this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnExit.Location = new System.Drawing.Point(524, 15);
            this.btnExit.Name = "btnExit";
            this.btnExit.Size = new System.Drawing.Size(75, 23);
            this.btnExit.TabIndex = 2;
            this.btnExit.Text = "退出";
            this.btnExit.UseVisualStyleBackColor = true;
            this.btnExit.Visible = false;
            // 
            // DefaultForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(611, 247);
            this.Controls.Add(this.plBaseButtom);
            this.Name = "DefaultForm";
            this.Text = "Form";
            this.plBaseButtom.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Panel plBaseButtom;
        private System.Windows.Forms.Button btnExit;
        private System.Windows.Forms.Button btnSave;
        private System.Windows.Forms.Button btnNew;
    }
}
View Code

後臺代碼

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Windows.Forms;

namespace WinForm
{
    public partial class DefaultForm : Form
    {
        public DefaultForm()
        {
            InitializeComponent();
            this.Load += new EventHandler(DefaultForm_Load);
        }

        private void DefaultForm_Load(object sender, EventArgs e)
        {
            SetButtonToSort(plBaseButtom, 5);
        }

        /// <summary>
        /// 設置Panel容器中的Button自動排序
        /// 當Button的Visible=false時會自動隱藏然後重新排序
        /// </summary>
        /// <param name="panel">Panel控制項</param>
        /// <param name="btnSpace">每個按鈕之間的間距</param>
        private void SetButtonToSort(Panel panel, int btnSpace)
        {
            int length = 0;
            List<Button> list = new List<Button>();
            Control.ControlCollection ctrs = panel.Controls;
            foreach (Control ctr in ctrs)
            {
                if (ctr is Button)
                {
                    if (ctr.Visible == true)
                    {
                        list.Add((Button)ctr);
                        length += ctr.Width + btnSpace;
                    }
                }
            }

            int pLength = panel.Width;
            if (length > pLength)
                return;

            int startPos = pLength - length - btnSpace;
            int xPos = startPos;

            foreach (Control ctr in list)
            {
                ctr.Location = new Point(xPos, ctr.Location.Y);

                xPos += ctr.Width + btnSpace;
            }
        }
    }
}

運行後的效果

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 這是一套基於ZKWeb網頁框架和Angular 4.0編寫的開源管理後臺Demo,實現了前後端分離和模塊化開發, 地址是: https://github.com/zkweb framework/ZKWeb.MVVMDemo ,開源協議是MIT,你可以隨意的修改並用於個人或商業用途 我之前已經公開了一 ...
  • 力軟的敏捷開發框架線上體驗中,存在漏洞,我們可以利用它來獲得我們所需要的代碼,具體的步驟如下:(體驗地址見最下方) 轉自:https://my.oschina.net/u/3154687/blog/896525 1.在頂部菜單欄中找到PC端開發 2.進入PC端開發界面後,點擊單表開發模板 3.選擇相 ...
  • 對象序列化: protocal buffers :性能好,侵入性強,編寫proto文件 hessian:性能穩定 ...
  • 1 #include 2 #include 3 4 using namespace std; 5 6 class STSystemA 7 { 8 public: 9 void OperationA() 10 { 11 coutOperationA(); 53 m_... ...
  • 網站大全 國外的花瓣--Pinterest • The world’s catalog of ideas 字體海洋--求字體網提供中文和英文字體庫下載、識別與預覽服務,找字體的好幫手 原創設計UI--站酷 (ZCOOL) - 設計師互動平臺 - 打開站酷,發現更好的設計! 花瓣的同行者--Adobe ...
  • ZooKeeper是一個分散式開源框架,提供了協調分散式應用的基本服務,它向外部應用暴露一組通用服務——分散式同步(Distributed Synchronization).命名服務(Naming Service).集群維護(Group Maintenance)等,簡化分散式應用協調及其管理的難度, ...
  • 明天的你感謝現在努力的你 Compsite定義 組合模式 : 將對象組合成樹結構以表示"部分整體"的層次結構. 組合模式使得用戶對單個對象和組合對象的使用具有一致性. component 節點的統一介面, 統一節點的操作 leaf 屬於葉子節點 composite屬於枝節點 , 可以有子節點 應用場 ...
  • 最近一直在搞重構。 目前又再新重構一個小工具。 因為工具功能比較簡單,但是需求不太明確,所以之前寫代碼的時候有點隨意,現在寫完了,感覺代碼很亂。 也因為現在對這個小工具比較熟悉了,覺得是時候重構一發了。 因為重構,我也正在看《重構,改善既有代碼的設計》一書。實踐一下我看了幾章的感悟和這幾年的經驗。 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...