FreeControls.PersianDateTimePicker.Finalize()中的错误

时间:2014-11-21 08:18:53

标签: c#

我在我的项目中使用PersianDate.dll,当想要退出程序时,就会发生一次异常。

FreeControls.PersianDateTimePicker.Finalize()

1 个答案:

答案 0 :(得分:0)

我认为其他人遇到同样的问题:FreeControls.PersianDateTimePicker.Finalize()error 使用PersianDate(http://persiancontrol.codeplex.com/

有一个对我有用的解决方案:

只需处理您在表单或项目中使用的控件

    private FreeControls.PersianDateTimePicker dt1;
    private FreeControls.PersianDateTimePicker dt2;

。 。

    private void yourForm_FormClosing(object sender, FormClosingEventArgs e)
    {
        //because of a bug in dateTime dll, they need to be Disposed
        dt1.Dispose();
        dt2.Dispose();
    }