C# 在panel中动态添加按钮 与 分批删除

时间:2022-08-30 17:55:12

参考文章:

①http://www.cnblogs.com/yuzhihui/p/5749233.html

②http://www.cnblogs.com/steed-zgf/archive/2012/04/03/2430819.html


先来一张效果图。

C# 在panel中动态添加按钮 与 分批删除


画布中的图片是以 button 的属性BackgroundImage = global::TEST4.Properties.Resources.画布活动铰支;

PS1: [如果要背景图片透明效果 需要 把 图片用PS 擦除 保存为PNG格式]


在同一张画布中,清除控件的常用方法有

panel.Controls.Clear();  该方法是一次性清除画布上的所有子控件,不能分批清除

panel.Controls.Remove();  ()中返回的是Control类,


单纯的用foreach方法 是不能一次性清除同一类的控件,

参考文章②中有提到;

//头文件
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Threading;



namespace TEST4
{
public partial class Form1 : Form
{
public float RodLength;
public Single RodLength_rate;
public string gdzhidianweizhi;
public string hdzhidianweizhi;
public int count11;
public int count22;
Button but1;
Button butt2;
static int G = 0;
static int Q = 0;
//Button butt2;

public Form1()
{
InitializeComponent();
//this.button6.Parent = this.button7 ;
//this.button7.Parent = this.panel3;
}



/////////////////////////////////////////////////////////////////////////////////从此开始

////出现suitch  和try-catch都是针对textbox输入时  中断的 格式异常处理

1.

C# 在panel中动态添加按钮 与 分批删除

2.

C# 在panel中动态添加按钮 与 分批删除

3.

C# 在panel中动态添加按钮 与 分批删除

4.

C# 在panel中动态添加按钮 与 分批删除

5.

C# 在panel中动态添加按钮 与 分批删除




思路: 文本框中用split(",")切割文本,

          实例化按钮时  butt2.Name  ,然后由此来作为删除的判断