C#, how to call a form object from a tray based application

给你一囗甜甜゛ 提交于 2019-12-02 13:58:58

It sounds like you forgot using System.Linq; at the top of your source file. But since you didn't post the sources, I can't say for sure. Posting the line of code that causes the error message, and the using directives that are in that same file would help.

Are you sure you are not trying something like this?

FileList frmFileList = new SomethingDifferent();

If so, change the FileList on the left side to SomethingDifferent.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!