4

我有一个名为 binding 的 bindingsource 控件,在 VS2012 中的一个表单上,以及一个绑定到它的 DateTimePicker 控件。

对于绑定属性,我有 MinDate = 1/01/1753 和 MaxDate = 31/12/9998 值已通过从日历中选择 Today 来设置 2013 年 5 月 4 日上午 11:27

我设置了一个绑定源使用

var dset = base.Context.ContactEvents;
var qry = dset.Where(p => p.Id > 0).OrderBy(x => x.Id);
qry.Load();
this.bindingSource.DataSource = dset.Local.ToBindingList();

绑定源的使用方式如下;

 public void RefreshBindingDataSourceAndPosition(BindingSource binding)
  {
    binding.DataSource = this.bindingSource.DataSource;  // error raised here
    binding.Position = this.bindingSource.Position;
  }

错误信息是

System.ArgumentOutOfRangeException 越过本机/托管边界 HResult=-2146233086 消息=“1/01/0001 12:00:00 AM”的值对“值”无效。“值”应介于“MinDate”和“MaxDate”之间。参数名称:值 Source=System.Windows.Forms ParamName=Value StackTrace:在 System.Windows.Forms.DateTimePicker.set_Value(DateTime value) InnerException:

我可以通过不绑定 Data Picker 并将其设置在 EventsBindingSource_CurrentChanged 事件中来解决该问题

然而,不得不这样做似乎很奇怪。我怎样才能让数据绑定工作?

[更新] 这个问题和这里描述的类似描述 的问题,我试图在一个更简单的项目中重现该问题,以便尝试找出原因,但它在更简单的项目中有效。该项目也可以在另一台计算机上运行。我的计算机同时使用 SQL Server 2012 和 2008R2 时出现此问题。我尝试在控制面板中更改日期格式和国家/地区。我也尝试了 format 属性的不同设置。我还尝试将日期字段设置为支持 null。

当我将错误复制到剪贴板时,它显示以下内容;

System.Reflection.TargetInvocationException 发生 HResult=-2146232828 Message=Exception 已由调用目标引发。Source=mscorlib StackTrace:在 System.RuntimeMethodHandle.InvokeMethod(对象目标,Object[] 参数,签名 sig,布尔构造函数)在 System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj,Object[] 参数,Object[] 参数)InnerException: System.ArgumentOutOfRangeException HResult=-2146233086 消息=“1/01/0001 12:00:00 AM”的值对于“值”无效。“值”应介于“MinDate”和“MaxDate”之间。参数名称:值 Source=System.Windows.Forms ParamName=Value StackTrace:在 System.Windows.Forms.DateTimePicker。

我的EF课如下

public class ContactEvent : LoggedEntity
{

    public virtual SortableBindingList<ContactEventAttendee> Attendees { get; private set; }
    public virtual ContactEventType ContactEventType { get; set; }
    public string Details { get; set; }
    public DateTime? EventTime { get; set; }
    public virtual SortableBindingList<ContactEventItem> Items { get; private set; }
    public int State { get; set; }
    public string Title { get; set; }
    public override string ToString()
    {
        return "Contact Events";
    }
}

它继承自

public abstract class LoggedEntity
{

   public LoggedEntity()
    {
        this.RowId = Guid.NewGuid();
        this.RowVersionId = 0;
        AppDomain dm = AppDomain.CurrentDomain;  // Gets the current application domain for the current Thread.
        object s = AppDomain.CurrentDomain.GetData("SiteNumber");
        this.SourceSiteNumber = Convert.ToInt32(s);
    }

    public LoggedEntity(int SiteNumber)
    {
        // the following 3 are used to identify the version 
        this.RowId = Guid.NewGuid();
        this.RowVersionId = 0;
        this.SourceSiteNumber = SiteNumber;
    }

    public int Id { get; set; }
    public Guid RowId { get; set; }

    [ConcurrencyCheck]
    public int RowVersionId { get; set; }
    public int SourceSiteNumber { get; set; }

}

[更新] 类似的问题在这里

[更新]这里的另一个让我觉得我需要看看如何处理密钥。

[更新] 我在输出窗口中注意到以下内容

A first chance exception of type 'System.ArgumentOutOfRangeException' occurred in System.Windows.Forms.dll

[更新]这导致我到 这里

打开调试选项后,我发现了一个错误

Invalid object name 'dbo.__MigrationHistory'.

然而,这是 EF5 中的一个已知错误

[更新]:我在这里找到了另一个有类似未解决问题的人 发现我在运行 .EXE 时没有问题

[更新]我可以通过在工具->选项->调试->常规中禁用“异常跨应用程序域或托管/本机边界时中断”来跳过错误

[更新] 我添加了以下内容,所以我可以检查控件属性。

    private void EventsBindingSource_BindingComplete(object sender, BindingCompleteEventArgs e)
    {
        // If the BindingComplete state is anything other than success, 
        // set the ErrorProvider to the error message.
        if (e.BindingCompleteState != BindingCompleteState.Success)
        {
            errorProvider1.SetError((Control)e.Binding.BindableComponent, e.ErrorText);
            var errdesc = e.ErrorText;
            var ctrl = (Control)e.Binding.BindableComponent;
              var info = string.Format(
               "{0} {1}",errdesc,
               ctrl.ToString());

            Debug.Print(info);
            // "Value of '1/1/0001 12:00:00 AM' is not valid for 'Value'. 
             'Value' should be between 'MinDate' and 'MaxDate'.\r\nParameter name: 
             Value System.Windows.Forms.DateTimePicker, Value: 1/1/1900 12:00:00 AM"

        }
        else
        {
            errorProvider1.SetError((Control)e.Binding.BindableComponent, "");
        }
    }
4

2 回答 2

5

异常的原因可能是 DatePicker 的 DataBinding "Value" 属性已设置为 BindingSource 字段。只需设置 DatePicker 的 DataBinding“Text”属性,数据绑定才能正常工作。检查 DatePicker 的 DataBinding“值”属性字段中是否有值,一旦删除,问题就会消失。

于 2014-02-16T18:01:41.497 回答
0

似乎关键问题是该属性是 Nullable DateTime。用于转录 DateTimePicker 组件的空值可能是“1 / 01/0001 12:00:00 AM”,这会产生与 MinValue 和 MaxValue 的配置相关的问题。使用 DataBinding 的 Advanced 选项卡可以选择将要使用的值设置为 null 解决此问题的一种方法是将值设置为 null 作为 MinDate,或者我们可以将 MinDate 设置为值 '01 / 01/0001 12 :00:00 上午'。尽管我的经验有限,但我相信这可能是您问题的根源。链接http://msdn.microsoft.com/en-us/library/aa480734.aspx可以在属性 DataBinding 的“高级”选项卡上看到其他内容。

于 2013-08-03T20:00:25.113 回答