Posts Tagged ‘silverlight diagrams’

Review of SharpShooter Diagrams Features

Andrey Akinshin

This article describes basic SharpShooter Diagrams features. You will see how it is easy-to-use yet powerful and flexible. Let’s begin with the Tools.
 
Tools
 
The Tool defines reaction of the component on user actions. It can be changed by updating the DocumentModel.Tool. All standard Tools are the properties of the DocumentModel class. Let’s point out some of them:
 
For manipulation with a document (DocumentModelBase properties):

  • SelectTool
  • PanTool
  • DynamicZoomTool
  • ViewerTool

(more…)

February 20th, 2012

Creating a custom object with SharpShooter Diagrams

Andrey Akinshin

In this article, we will learn how to create custom objects in SharpShooter Diagrams and review the particularities of this process. To demonstrate it on a sample, we will create a simple object showing Sun (the delivery package of the component includes the Sun class, but we are going to write our own class – UserSun). Let’s start from the declaration:
 

[StoredClass("Sample.UserSun")]
 public class UserSun : SquareTextBlockBase
 {
 }

 
(more…)

February 2nd, 2012