winforms 使用对话框从其他窗体返回对象列表

fquxozlt  于 2022-11-17  发布在  其他
关注(0)|答案(1)|浏览(154)

第一种形式

listExcelBonCmds = new List<ListExcelBonCmd>();
            using (var form = new importationBonCmd())
            {
                var result = form.ShowDialog();
                if (result == DialogResult.OK)
                {
                    listExcelBonCmds = dialogForm.listBonCmdFromExcel;
                }
            }

对话框窗体

public List<ListExcelBonCmd> MyList
        {
            get { return myListExcel; }
          
        }

  private void toolStripButton4_Click(object sender, EventArgs e)
        {
            this.DialogResult = DialogResult.OK;
            this.Close();

        }

我想将列表从对话框窗体发送到主窗体,但无法工作。* 任何帮助!!*

u7up0aaq

u7up0aaq1#

在类中将列表从专用更改为公用

相关问题