Browse by Tags

All Tags » SCSF » C# (RSS)

A new phase for the Acropolis project

The Acropolis Team has announced that Acropolis is going to enter a new phase.

David S. Platt Has Posted An Event Visualizer for CAB

David S. Platt has posted an Event Visualizer for CAB. I'll have to check it out.

Smart Client Software Factory - May 2007 Release is Live

(From Blaine Wastell 's post and Mariano Szklanny 's post ) You can now download the SCSF - May 2007 release . The new release provides support for .NET 3.0. The release is propagating to the download servers and should be available when you read...

An Hierarchical CAB WorkItem Activation Service

The application I'm currently working on has a rather complex UI. It's something like two tabbed work spaces and an outlook-like work space, that make one workspace by itself, that can have several instances inside another tabbed workspace, that can have...

Unit Testing With CAB

For those who like to unit test their software and are developing CAB applications, the SCSF comes with sample applications with unit tests. These unit tests are built on top of an useful set of testable classes which one of them is the TestableRootWorkItem...

Work Spaces and Smart Part Info Provider

As I understand it, the MVP (Model/View/Presenter) design pattern states that all presentation decisions are the Presenter's responsibility. In the CAB world, this should include the Smart Part Info. But the IWorkspace interface only allows you to provide...

Enhancing CAB's ManagedObjectCollection

For those who don't know, the ManagedObjectCollection registers its elements using the objects running type as part of the key. Recently, I had the need to add and retrieve a component to the WorkItem 's Items collection independently of its running....

Using Remoting with CAB

Anyone who has ttried to add a service implemented through Remoting to the WorkItem 's services collection was sadly surprised that it can't be done. But why? When we use the following code: WorkItem.Services.Add<IServiceContract>(serviceInstance...