将表单对象值传递给静态方法

发布于 2024-10-09 22:39:22 字数 417 浏览 4 评论 0原文

我需要获取一个表单对象值并将其传递给静态方法:

 public void SetCalendarStartSafe(DateTime startDateSafe)
 {
     startDateSafe = calendarStart.Value;
 }   

 private static DataTable GetData()
 {
     frmMain frm = new frmMain();
     DateTime startDate = new frmMain();
     frm.SetCalendarStartSafe(startDate);
 }

但是,每当我尝试此方法时,我都会不断获取今天的当前日期,即使表单上指定的日历日期不同。如何从原始 frmMain 对象中获取用户指定的日历日期?预先感谢您的任何指导。

I need to take a form object value and pass it into a static method:

 public void SetCalendarStartSafe(DateTime startDateSafe)
 {
     startDateSafe = calendarStart.Value;
 }   

 private static DataTable GetData()
 {
     frmMain frm = new frmMain();
     DateTime startDate = new frmMain();
     frm.SetCalendarStartSafe(startDate);
 }

However I keep getting today's current date whenever I try this approach, even if the specified calendar date on the form is different. How can I can the user-specified calendar date from the original frmMain object? Thanks in advance for any guidance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你与昨日 2024-10-16 22:39:22

您将从非静态代码中的某个位置调用 GetData() 吗?例如,来自 Form 中的某个事件.. 在该事件中将参数传递给静态方法 GetData(DateTime..)

you will be calling GetData() from somewhere in the code which is non-static? like for example from some event in the Form.. in that event pass the parameter to the static method GetData(DateTime..)

日久见人心 2024-10-16 22:39:22
public void SetCalendarStartSafe(DateTime startDateSafe)
{
    // wrong:
    // startDateSafe = calendarStart.Value;
    // right:
    calendarStart.Value = startDateSafe;
} 

在那里,把这两个交换一下。任务的目的地位于左侧。

public void SetCalendarStartSafe(DateTime startDateSafe)
{
    // wrong:
    // startDateSafe = calendarStart.Value;
    // right:
    calendarStart.Value = startDateSafe;
} 

There, just swap those two around. The destination of the assignment is on the left.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文