如何自动从 xtrascheduler 获取日期到其他形式
我正在使用 devexpress xtrascheduler,因为我需要在单击 xtrascheduler 上的特定日期时获取下一个表单的日期,
例如,如果我单击日期为 02-06-2010 的单元格,然后当其他表单打开它时应该接受那个日期...有可能吗..
I am using devexpress xtrascheduler in that i need to get the date n the next form while clickin on a particular date on the xtrascheduler
for example if i am clicking on a cell having date 02-06-2010 then when an other form is opening it shud take that date...Is it possible..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,当然有可能。只需在打开新页面之前获取 xtrascheduler 值,然后设置
日期时间日期;
转到其他表单的代码。您也有一行像
添加此行一样,并在全局声明一个变量,并将其设置为传入日期,
所以现在,当您尝试打开新表单时,将询问日期时间参数,例如,
----- ----- 第二种方式
Form FirstForm = 您的主表单
Form SecondForm = 您的第二个表单,其日期将传输到此表单
在 form SecondForm:
将您的日期时间值设置为 FirstForm 中的变量。让我们说
在这部分使用这个:
之前在第一个表单中发送此参数
只需在打开Scheduler Control
,并参见 this信息可能对您有帮助,并且有您需要的属性
Yes of course it is possible. Just take xtrascheduler value before opening new page, and set
DateTime date;
Go to other form's code. you have a line like
add this lines too, and declare a variable at global, and set it to incoming date like,
so now, when you tried to open your new form, the datetime parameter will be asked like,
---------- second way
Form FirstForm = Your main form
Form SecondForm = Your second form which date will be transferred to this form
At form SecondForm:
set your datetime value to a variable in FirstForm. Lets say
at this part use this:
just send this parameter in the first form before opening
Scheduler Control
and also see this information might help you and there are properties you need