리스트형식의 클래스 객체를 리소스로 만들어 데이터바인딩 하여 보자
글 제목이 횡설수설한거 같은데
public event PropertyChangedEventHandler PropertyChanged;</p>
</span>protected void Notify(string propName){ </span>string path; }</span></div>
</div>
</div>
if(this.PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propName));
}
}</p>
public string PATH{
get { return this.path; }
set {
if (this.path == value) { return; }
this.path = value;
Notify("PATH");
} </div>
}
class mp3Infos : ObservableCollection<mp3Info>//mp3info
{</p>
mp3Infos list = (mp3Infos)this.FindResource("mp3InfosDS");
list.Add(id3v2parse.read(filepaths[i]));//데이터를 리소스에 추가.