我正在尝试创建一个程序来删除由excel文件填充的DataSet中的列。它删除列的方式是将每列中的标题与每行中的第一个元素进行比较,并删除未出现在行中的任何字符串的列。我的问题是,我得到了一个我无法理解的奇怪错误。它说:
在类型'Excel_Retriever.MainWindow'上调用与指定绑定约束匹配的构造函数会引发异常。行号“3”和行位置“9”。
我是C#和XAML的新手,非常感谢您解决此错误的任何帮助。谢谢!这是我的代码:
XAML:
<Window x:Class="Excel_Retriever.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid Name="ExcelGrid">
<DataGrid ItemsSource="{Binding}" AutoGenerateColumns="True" Height="289" HorizontalAlignment="Left" Margin="10,10,0,0" Name="dataGrid1" VerticalAlignment="Top" Width="481" />
</Grid>
</Window>
C#:
namespace Excel_Retriever
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
DataSet excel = GetDataTableFromExcel("C:\\Users\\Sweet Lou\\Desktop\\Adjusted research info.xlsx", "Research");
//dataGrid1.DataContext = excel.Tables[0];
DataSet ignoreds = Ignore_Names(excel);
dataGrid1.DataContext = ignoreds.Tables[0];
}
public DataSet GetDataTableFromExcel(string FilePath, string strTableName)
{
try
{
OleDbConnection con = new OleDbConnection("Provider= Microsoft.ACE.OLEDB.12.0;Data Source=" + FilePath + "; Extended Properties=\"Excel 12.0;HDR=YES;\"");
OleDbDataAdapter da = new OleDbDataAdapter("select * from [Sheet1$]", con);
DataSet ds = new DataSet();
da.Fill(ds);
return ds;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
return null;
}
public DataSet Ignore_Names(DataSet sheet)
{
DataSet ignoreds = sheet;
DataColumn columnNames = sheet.Tables[0].Columns["Name"]; //first column with names
//ignoreds.Tables[0].Columns.Add(columnNames);
int j = 1;
for (int i = 0; i < 15; i++) //change 15 to variable
{
while (String.Compare(columnNames.Table.Rows[i].ToString(), sheet.Tables[0].Columns[j].ColumnName, true) != 0)
{
ignoreds.Tables[0].Columns.RemoveAt(j);
j++;
}
j++;
}
return ignoreds;
}
}
}
答案 0 :(得分:3)
您不需要将strTableName传递给您的方法,因为您从未使用它。
如果您对字符串使用@“”,则无需转义:@“c:\ users ....”;
你得到了一个例外,因为你试图去核实不存在的行。如果我在这里正确理解你的目标,这就是你的方法应该是什么样的。
public static void Ignore_Names(DataSet sheet) {
var table = sheet.Tables[0];
var columns = table.Columns;
var nameColumn = columns["Name"];
var names = new List<string>();
foreach (DataRow row in nameColumn.Table.Rows)
names.Add(row[0].ToString().ToLower());
// Work from right to left. If you delete column 3, is column 4 now 3, or still 4? This fixes that issue.
for (int i = columns.Count - 1; i >= 0; i--)
if (!names.Contains(columns[i].ColumnName.ToLower()))
columns.RemoveAt(i);
}
另外,在MainWindow构造函数中,您应该在设置excel后执行此操作:
Ignore_Names(excel);
dataGrid1.ItemsSource = excel.Tables[0].DefaultView;
请注意,我正在设置ItemsSource,而不是DataContext,我正在传递DefaultView。您可以完全从XAML中删除ItemsSource绑定。
你应该使用VSTO而不是DataSet,但这是另一回事:)