我正在尝试创建一个简单的程序,允许用户选择文件并向其中添加元数据。
我创建了一个ListBox
允许用户将文件拖放到上面的程序。我抓住路径并将其保存到一个对象中。然后我将文件名显示在ListBox
.
我想要它,这样当用户在列表框中选择一个项目时,我可以显示我在文件中拥有的元数据,并允许他们添加更多内容并编辑那里的内容。
现在我有一个存储路径的类项和一个字典,<string, string>
其中Key
是元数据的名称,Value
也是值。
我曾尝试使用 DataGrid,但也许这是使用错误的控件来绑定到字典。这似乎不是正确的方法,因为它没有实现INotifyPropertyChanged
接口。
我可以创建自己的类并手动更新 DataGrid,但对于不知道如何正确 DataBind 的我来说,这似乎是一种解决方法。
XAML
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="MetadataAdder.MainWindow"
Title="Metadata Adder" Height="480" Width="640">
<Grid>
<Button x:Name="Add_BTN" Content="Add" HorizontalAlignment="Left" Margin="10,410,0,0" VerticalAlignment="Top" Width="50" Click="Add_Click"/>
<Button x:Name="Remove_BTN" Content="Remove" HorizontalAlignment="Left" Margin="241,410,0,0" VerticalAlignment="Top" Width="50" Click="Remove_Click"/>
<ListBox x:Name="File_List" HorizontalAlignment="Left" Height="364" Margin="10,31,0,0" VerticalAlignment="Top" Width="281" AllowDrop="True" Drop="FilesDropped" ItemsSource="{Binding Item_List}" SelectionChanged="Item_Selected"/>
<DataGrid
x:Name="MetadataGrid"
HorizontalAlignment="Left"
Margin="311,31,0,0"
VerticalAlignment="Top"
Height="364"
Width="303"
d:LayoutOverrides="GridBox"
CanUserAddRows="False"
CanUserDeleteRows="False"
CanUserReorderColumns="True"
CanUserResizeColumns="True"
CanUserResizeRows="True"
CanUserSortColumns="True"
/>
<Label Content="Files to add Metadata to" HorizontalAlignment="Left" Margin="10,0,0,0" VerticalAlignment="Top"/>
<Label Content="Metadata" HorizontalAlignment="Left" Margin="313,5,0,0" VerticalAlignment="Top" RenderTransformOrigin="0.474,0.115"/>
</Grid>