因此,我目前正在使用 C#/XAML 为 Windows 8 商店应用程序开发一个项目,我遇到了一个问题。
当用户导航到页面时,会显示带有一些控件的 ListView。然后,当用户决定捕捉页面时,我的应用程序崩溃并显示:
在我的 IntelliTrace 中,这出现了,我按下了一个例外。
它将我导航到此代码。
/// <summary>
/// Implement this partial method to configure the service endpoint.
/// </summary>
/// <param name="serviceEndpoint">The endpoint to configure</param>
/// <param name="clientCredentials">The client credentials</param>
static partial void ConfigureEndpoint(System.ServiceModel.Description.ServiceEndpoint serviceEndpoint, System.ServiceModel.Description.ClientCredentials clientCredentials);
public EmployeeAssisterClient() :
base(EmployeeAssisterClient.GetDefaultBinding(), EmployeeAssisterClient.GetDefaultEndpointAddress()) {
this.Endpoint.Name = EndpointConfiguration.TimeLoggerEndPoint.ToString();
ConfigureEndpoint(this.Endpoint, this.ClientCredentials);
}
我将控件添加到列表视图中,如下所示:
_timeReports = _timeReportDatabase.GetAll();
foreach (var timeReport in _timeReports)
{
_invoicedControls.Add(new InvoicedControl(timeReport)
{
Customer = timeReport.CustomerName,
Date = timeReport.Date,
WorkedTime = timeReport.WorkedTime.ToString(),
InvoicedTime = timeReport.InvoicedTime.ToString()
});
}
TimeReportsListViewFillView.ItemsSource = _invoicedControls;
TimeReportsListViewFullView.ItemsSource = _invoicedControls;
TimeReportsListViewPortraitView.ItemsSource = _invoicedControls;
TimeReportsListViewSnappedView.ItemsSource = _invoicedControls;
编辑================================================== ==============================
这是抛出的错误
我通过在 Cmd 中键入“C:\Program Files\Microsoft Visual Studio 11.0\Common7\IDE\VsDiag_regwcf.exe -u”关闭了 WCF 调试,它解决了 2/3 问题
这是我的 IntelliTrace 中的最后一个错误:
这个错误是什么意思?any1 知道如何解决这个问题吗?