リストボックスがあり、別のクラスでリストボックスの選択された値にアクセスしようとしていますが、公開されていないためアクセスできないと表示されます。ラベルへのアクセスにも同じ問題があります。
public dataCollector(string i)
{
string tag = i;
}
public string dataCollector()
{
Form1 f = new Form1();
string workingDirectory = Directory.GetCurrentDirectory();
var xmlFile = XDocument.Load(workingDirectory + @"\modules.xml");
var name = from d in xmlFile.Descendants("Name")
where d.Value == (String)f.selectionBox.SelectedItem
select d.Parent.Element(tag).Value;
foreach (var item in name)
{
f.moduleName.Text = item.ToString();
}
}