vote up 1 vote down star

I only have a vague hint of spec so far, but I'm just testing the waters. I need to create a designer that will be used for creating CBT tasks and workflows. It must cater for custom objects (controls) as well as standard .NET WinForms controls.

I very lightly scanned some papers long ago on using the Visual Studio SDK and deployable design framework, but I can't remember anything meaningful.

  1. I need some resources on building designers in general, with drag and drop, resizing, connectors, and events.
  2. I need some resources on the capabilities of the Visual Studio SDK in regards to my first point.
  3. I would appreciate any recommendations regarding alternative (hopefully open source) technologies and patterns.

I would lurve to write this from scratch, but I can't do that at my client's expense, so I would much prefer to leverage existing artifacts as much as possible.

EDIT: When I first posted, I could not recall that one tool I had in mind was the Visual Studio Shell, which allows me to create a "VS clone", with VS features, but my own branding and DSL type projects.

flag

70% accept rate

2 Answers

vote up 1 vote down

I have implemented the VS designer in one of my applications, and I'll tell you now - there is not much documentation. Although I achieved a result I am happy with, documentation is slim. Here are some links:

Create And Host Custom Designers With The .NET Framework 2.0

System.ComponentModel.Design Namespace

DesignSurfaceManager Class

link|flag
vote up 0 vote down

If you are looking to leverage "existing artefacts", wouldn't the existing Visual Studio WinForms designer count as the predominate one? Even if they don't have a budget, the Express Edition would seem quite reasonable (it is free) for designing the kinds of flows I have seen in CBT and would avoid a custom solution which will require endless feature enhancement which probably end up being the same as the existing tool.

Instead you could focus on the quiz controls and other custom elements, leaving the form layout to a battle tested tool.

I don't say this to be sarcastic... quite the opposite, I have lived this road once when we designed our own web forms generation system in Classic ASP many years ago. We thought we could make a simple system, but 12 years later it is as complex as a "real" editor and no where near as polished. I don't regret doing so (there was only Visual Interdev when we started) but I wouldn't do it today.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.