Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do you use the Inductive User Interface pattern in Windows Forms?

And if you do, can you give some background information on the implementation and the reasons for implementing this pattern?

The pattern is described in more detail in these articles:

like image 372
Michiel van Oosterhout Avatar asked Mar 01 '23 08:03

Michiel van Oosterhout


2 Answers

Yes - we had a problem in that many of the administrators of our software found it too difficult to use. To solve this we used Microsoft's WinForms IUI framework build a new configuration and management tool for our software.

User feedback has been extremely positive, particularly with everything being task driven - i.e. the links on our home page include thing like "Create new user", "Create new department" - rather then the user having to discover how to do this by clicking through a series of menus. Since the inductive interface is more similar to a web-browser (hypertext links, back/forward buttons) it seems much easier for new users to learn.

like image 88
John Sibly Avatar answered Mar 04 '23 16:03

John Sibly


I would suggest to use IUI Interfaces, whenever you use a software not on a daily basis...

Whenever you use an application only once a month, it could be very usefull to be guided through...

I have implemented IUI always manual, or at least used a Wizard-User-Control.

like image 23
Peter Gfader Avatar answered Mar 04 '23 14:03

Peter Gfader