0

我有两列路径和文件名作为datagrid1,我想将路径列绑定到一个列表<>,这样我就可以通过单击一个按钮将所有文件复制到不同的位置。有人能帮助我吗?寻找 c# wpf 代码。

Path            FileName
C:\Temp\abc.txt abc.txt
C:\Temp\xyz.txt xyz.txt
C:\Temp\a.txt   a.txt

编码

XAML

<DataGrid AutoGenerateColumns="False" Height="193" HorizontalAlignment="Left"
          Margin="169,6,0,0" Name="dataGrid1" VerticalAlignment="Top" Width="200"              
          ItemsSource="{Binding}">
          <DataGrid.Columns>
              <DataGridTextColumn Header="Path" Binding="{Binding Path}" />
              <DataGridTextColumn Header="FileName" Binding="{Binding FileName}" />
          </DataGrid.Columns>
</DataGrid>

在后面

public class ReportFiles
    {
        public string Path { get; set; }
        public string FileName { get; set; }
    }
4

2 回答 2

0

我查看了你的代码,它看起来结构不太好,
而且它也不起作用,尤其是那个"buttonAttach_Click()"功能。

这里有不同的事情要提到。

  1. 将 Class 重命名ReportFilesReportFile,因为它只描述“一个”文件,而不是一堆文件。

  2. 的属性ReportFiles没有正确命名。
    RealName,TargetName不是真的不言自明,所以我将它们更改为Path,FileName

  3. 您通过以下调用将项目作为匿名对象添加到 DataGrid:

    dataGrid1.Items.Add(new { RealName = list.RealName, TargetName = list.TargetName});

    如果您添加对象本身,以后使用它会更干净,更容易。
    特别是因为您已经在之前的行中创建了它。
    所以我把它改成:

    ReportFile reportFile = new ReportFile();
    reportFile.Path = str;
    reportFile.FileName = System.IO.Path.GetFileName(str);
    dataGrid1.Items.Add(reportFile);

  4. 我不明白你在btnSave_Click函数中做了什么。但我假设您想将之前选择的现有文件复制到C:\Temp\目录中,所以我也更改了它。
    正如你现在所看到的,你可以简单地 foreachDataGrid.Items并用它们做你喜欢的事情。


所以它归结为一个非常简单的解决方案:

public class ReportFile
{
  public string Path { get; set; }
  public string FileName { get; set; }
}

private void buttonAttach_Click(object sender, RoutedEventArgs e)
{
  Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
  if (dlg.ShowDialog() == true)
  {
    foreach (string str in dlg.FileNames)
    {
      ReportFile reportFile = new ReportFile();
      reportFile.Path = str;
      reportFile.FileName = System.IO.Path.GetFileName(str);
      dataGrid1.Items.Add(reportFile);
    }
  }
}

private void btnSave_Click(object sender, RoutedEventArgs e)
{
  foreach (ReportFile reportFile in dataGrid1.Items)
  {
    string fileName = @"C:\Temp\" + reportFile.FileName;
    if (File.Exists(fileName))
      continue;
    else
    {
      try
      {
        File.Copy(reportFile.Path, fileName);
      }
      catch (Exception err)
      {
        MessageBox.Show(err.Message);
        return;
      }
    }
  }
}




@任何模组,请删除第一个答案,因为它不再计数

于 2013-04-16T12:00:51.660 回答
0

基本上我正在做的是从本地驱动器收集文件并将它们全部复制到 C:\ReportFiles。我创建了两个按钮。附加并保存。附加将浏览并获取文件。在 dataGrid1 中,我采用旧路径和文件名。收集完所有文件后。点击保存按钮。这将从数据网格中获取路径列,并开始将数据网格路径列中的文件复制到 C:\ReportFiles。循环将完成这项工作。

问题是列表,我不能将数据网格列作为集合列表。希望这能清除。

数据网格代码:

<DataGrid AutoGenerateColumns="False" Height="193" HorizontalAlignment="Left" Margin="169,6,0,0" Name="dataGrid1" VerticalAlignment="Top" Width="200" ItemsSource="{Binding ReportFiles}">
                <DataGrid.Columns>
                    <DataGridTextColumn Header="Path" Binding="{Binding Path}" />
                    <DataGridTextColumn Header="FileName" Binding="{Binding FileName}" />
                </DataGrid.Columns>
            </DataGrid>

主窗口.cs:

public partial class EditReport : Window
{
        public List<ReportFiles> listabove = new List<ReportFiles>();

 public class ReportFiles
    {
        public string RealName { get; set; }
        public string TargetName { get; set; }
    }

    private void buttonAttach_Click(object sender, RoutedEventArgs e)
        {
        Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
              if (dlg.ShowDialog() == true)
        {
foreach (string str in dlg.FileNames)
                     {
                     ReportFiles list = new ReportFiles();
                     list.RealName = str;
                     list.TargetName = filename;
                     dataGrid1.Items.Add(new { RealName = list.RealName, TargetName = list.TargetName });
            string fileName = @"C:\Temp\" + filename + System.IO.Path.GetExtension(str).Trim(); ;
                    if (File.Exists(fileName))
                    continue;
                    else
                        {
                        try
                        {
                             File.Copy(str, fileName);
                        }
                        catch (Exception err)
                             {
                             MessageBox.Show(err.Message);
                             return;
                             }
                        }
            }
        }
}

private void btnSave_Click(object sender, RoutedEventArgs e)
       {
            ReportFiles rep = new ReportFiles();
            DataRowView paths = (System.Data.DataRowView)dataGrid1.Items[0];
            rep.RealName = Convert.ToString(paths.Row.ItemArray[0]);

       }
}
于 2013-04-16T09:33:19.677 回答