そのため、データバインディングでTagLibライブラリを使用しようとしていますが、バインド可能なプロパティに変換するのに問題があります。どんな助けでもありがたいです、ありがとう。これが私がこれまでに持っているものです、私は私が間違っていることを理解していません:
public TagLib.File fileToEdit
{
get { return (TagLib.File)GetValue(fileToEditProperty); }
set { SetValue(fileToEditProperty, value); }
}
// Using a DependencyProperty as the backing store for fileToEdit. This enables animation, styling, binding, etc...
public static readonly DependencyProperty fileToEditProperty =
DependencyProperty.Register("fileToEdit", typeof(TagLib.File), typeof(TagLib.File), new UIPropertyMetadata(TagLib.File.Create("",TagLib.ReadStyle.None)));