windows在c中窗体加载

本文关键字:窗体 加载 windows | 更新日期: 2023-09-27 18:28:51

我正在编写一个程序,该程序读取输入文件,然后向用户显示名称列表。我的编码如下:

Read the txt file
Store the data in a list
then call a method userint.add_names(names); //where names is a list containing first name and last name.
Created a new method in userint.cs as follows:
internal void add_localvars(List<names> name)
        {
            userinter userinterface = new userinter();
            InitializeComponent();
            listbox1.DataSource = name;
            listbox1.DisplayMember = "first_name"; 
            userInterface.Activate();
            userinterface.Show();
        }

我不知道为什么我的表格没有加载。我在最后一句激活表格中出错,也不知道如何加载表格。我在互联网上尝试了一百种不同的东西。有人能帮忙吗。

感谢

windows在c中窗体加载

我认为您也可以放弃对InitializeComponent和Activate的调用。这些将由设计器代码和事件的自然顺序来处理。应该让你的代码更轻一点。