2

我正在尝试创建一个简单的程序,允许用户选择文件并向其中添加元数据。

我创建了一个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>

4

1 回答 1

1

另一种适合您的方法是创建您自己的 FileMetadata 对象,该对象实现 INotifiyPropertyChanged 并包含元数据的键和值的属性。

然后将您的 FileMetadata 对象集合存储在 ObservableCollection 中并绑定到您的 DataGrid。

这将允许各个元数据项将其值保存到更改通知系统,并允许 DataGrid 在添加或删除任何元数据项时自动更新。

于 2012-04-14T16:21:23.027 回答