从另一个类 C# 动态添加控件
本文关键字:添加 控件 动态 另一个 | 更新日期: 2023-09-27 17:56:04
我的 Form1 中有一个名为 mainPanel 的面板,我想从另一个类向其添加控件。我试图将可见性设置为公开,但没有奏效。
这是我创建控件的地方:
public List<Control> addControlsToMain(string SearchWord, Size ContainerSize)
{
List<Control> ListOfControls = new List<Control>();
Panel Box;
Label Title, Content;
int PositionCounter = 10;
foreach (string data in GetSearchData(SearchWord))
{
Box = new Panel();
Title = new Label();
Content = new Label();
Box.Size = new Size((int)(ContainerSize.Width * 0.8), 100);
Title.Size = new Size(Box.Width, 20);
Content.Size = new Size((int)(Box.Width * 0.8), 60);
Box.Location = new Point(10, PositionCounter);
Title.Location = new Point(25, 10);
Content.Location = new Point(25, 40);
Title.Text = "Title";
Content.Text = "Content here";
ListOfControls.Add(Box);
Box.Controls.Add(Title);
Box.Controls.Add(Content);
PositionCounter += 110;
}
return ListOfControls;
}
其中 GetSearchData(SearchWord) 只是另一个在列表中返回随机字符串的函数,这个函数 addControlsToMain() 属于我的类 SearchFunctions.cs(一个与 Form1 分开的类)。我尝试添加这些控件来执行此操作:
var mainForm = new Form1();
SearchFunctions src = new SearchFunctions();
System.Drawing.Size panelSize = mainForm.mainPanel.Size;
foreach(System.Windows.Forms.Control data in src.addControlsToMain("Stack overflow", panelSize))
{
mainForm.mainPanel.Controls.Add(data);
}
我的类 CommandFunctions.cs 是谁必须添加这些控件。如何将这些控件列表添加到我的面板?
你可以用几种方式去做。其中之一是将SearchFunctions
对象作为属性添加到Form1
类中。然后使用该对象调用添加控件的方法。
public partial class Form1 : Form
{
SearchFunctions src = new SearchFunctions();
public void Button_Click(object sender, EventArgs e)
{
List<Control> myControls = src.addControlsToMain(mySearchWord, mySize);
foreach (Control c in myControls)
{
this.Controls.Add(c);
}
}
}
此示例使用按钮单击,但您可以将该方法放置在所需的任何位置。
问题很可能在这里:
var mainForm = new Form1();
您正在创建一个永远不会显示的 Form1 的新实例。
以下是一些选项:
- 将对现有 Form1 实例的引用传递到类中,并使用该引用添加控件。
或
- 直接从表单本身使用
addControlsToMain()
函数,以便您可以使用this
添加控件,正如 Juken 在他的帖子中演示的那样。
或
- 使用自定义事件将控件传递到窗体。
我宁愿使用网络表单,但这仍然应该有效:我基本上是在尝试添加控件
- 到一个类(比如主.cs)中的**面板**(而不是表单)和
- 从另一个类(例如类 1.cs)创建控件并将其添加到此面板
====
============================================================================步骤:
1.使用适当的命名空间来调用控件类实用程序例如:System.Web.UI.Web Controls(在我的情况下)
2.In 主要.cs
Panel Panel1= new Panel();
foreach(some condition)
{
class1.addControlsToMain("xyz_Searchword", 2, ref Panel1); //Calls the method which creates the controls
}
类1.cs
{ Public static void addControlsToMain(string searchword, int size,ref Panel p1) { List<WebControl> list = new List<WebControl>(); //should be List<Control> for Windows Label lb1, title; lb1 = new Label(); title = new Label(); lb1.Text = "Test Label Control1"; title.Text = "Test Title Label Control"; p1.Controls.Add(lb1); p1.Controls.Add(title); list.Add(p1); } }
长话短说,请尝试使用 Ref 关键字。希望这有所帮助。