listBox1
Windowsフォームでは、パネルにいくつかのラベルがあり、フォルダーから(.rtdl)ファイルのコレクションをロードする場所から静的値を表示したいと思います。
labels
ユーザーがそれぞれを選択すると、対応する属性値をパネルに表示したいと思います。
listBox1 に入力するコード:
private void Form1_Load(object sender, EventArgs e)
{
PopulateListBox(listBox1, @"C:\TestLoadFiles\", "*.rtdl");
}
private void PopulateListBox(ListBox lsb, string Folder, string FileType)
{
DirectoryInfo dinfo = new DirectoryInfo(Folder);
FileInfo[] Files = dinfo.GetFiles(FileType);
foreach (FileInfo file in Files)
{
lsb.Items.Add(file);
}
}
listBox1 からファイルを読み取るコード:
private void listBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
FileInfo file = (FileInfo)listBox1.SelectedItem;
DisplayFile(file.FullName);
string path = (string)listBox1.SelectedItem;
DisplayFile(path);
}
private void DisplayFile(string path)
{
string xmldoc = File.ReadAllText(path);
using (XmlReader reader = XmlReader.Create(xmldoc))
{
while (reader.MoveToNextAttribute())
{
switch (reader.Name)
{
case "description":
if (!string.IsNullOrEmpty(reader.Value))
label5.Text = reader.Value; // your label name
break;
case "sourceId":
if (!string.IsNullOrEmpty(reader.Value))
label6.Text = reader.Value; // your label name
break;
// ... continue for each label
}
}
}
}
ファイルを選択すると、このエラーが にスローillegal characters in path
されusing (XmlReader reader = XmlReader.Create(xmldoc))
ます。
ここで何が間違っているのか教えてください???