-
smithimage committed revision 62 to the MVC# SVN repository, changing 1 files.
2009-08-04 22:21:09 UTC by smithimage
-
Hi,
You may pass the controller itself as the task parameter:
class UserControlController : ControllerBase, IMyTaskResultListener
...
public void StartMyTask()
{
Task.TasksManager.StartTask(typeof(MyTask), this);
}
public void RecieveMyTaskResult(object[] values)
{
// do something with values
}
...
interface IMyTaskResultListener
{.
2009-06-21 04:55:06 UTC by ovzh
-
I'm trying to create a reusable user control that fires a custom task to select values. The problem is that I need to get the results back from the selecting task. The mechanism to pass information between tasks is the method “OnStart”, so, in order to be independent from the containing Form I need to get a task instance associated to the controller of the user control. Also I need more than...
2009-06-16 18:52:04 UTC by edibercu
-
Hi shailesh,
We are facing the same scenario like you.
We have a master page with the multiple navigation links.
Different link (URL) sets belong to different MVC# Tasks.
Somehow, we need to be able to StartTask() from the master page and navigate to a view corresponding to a particular link (URL).
So, mulltiple MVC# Tasks and ASP.NET master pages holding navigation links is a big...
2009-05-27 20:32:18 UTC by ykhabins
-
the simple case is run the demo and choose in menu Views->UserControlView1 (without open any form)
2009-05-11 11:05:48 UTC by nobody
-
method WinformsViewsManager.GetViewInfo(string viewName) fails on 'System.NullReferenceException' (Version 0.8.5, file: WinformsViewsManager.cs line: 176 )
private WinformsViewInfo GetViewInfo(string viewName)
{
WinformsViewInfo viewInf = ViewInfos[viewName] as WinformsViewInfo;
if (viewInf == null)
viewInf = new WinformsViewInfo(ViewInfos[viewName].ViewName...
2009-05-11 10:32:07 UTC by nobody
-
I was wondering this because i guess right now MVCSharp is not a full blown usable MVC library and there's none really right now for windows forms.
2009-05-11 03:15:22 UTC by sinae
-
Hi,
I'ld like to try out the WPF version. Have you any idea when we may expect this version to be available ?
Thanks.
Ivo.
2009-04-16 14:11:29 UTC by nobody
-
How can we configure one ore more specific view(s) (in viewdescription{}) to nativate using https protocol?
Thanks
Anil.
2009-04-06 04:29:36 UTC by anilkumartr
-
Hi.
I am new to MVP, but I like it & I would like to use it in my application.
I studied all your examples & tried to use it on one of our completed forms which contains around 2000 lines ( because this form is for entering data for bills which requires a lot of validations ) with a lot of events ( around 30) for the controls ( ComboBoxs + TextBoxs + Grids .. etc).
When I tried to...
2009-04-04 17:45:33 UTC by adelkh