コード例 #1
0
 /// <summary>
 /// Raises the selection changed event.
 /// </summary>
 /// <param name="selected">Selected.</param>
 internal void RaiseSelectionChanged(KimonoShape selected)
 {
     if (SelectionChanged != null)
     {
         SelectionChanged(selected);
     }
 }
コード例 #2
0
 /// <summary>
 /// Raises the shape modified event.
 /// </summary>
 /// <param name="shape">Shape.</param>
 internal void RaiseShapeModified(KimonoShape shape)
 {
     // Inform caller of event
     if (ShapeModified != null)
     {
         ShapeModified(shape);
     }
 }
コード例 #3
0
 /// <summary>
 /// Raises the return to shape event.
 /// </summary>
 /// <param name="shape">Shape.</param>
 internal void RaiseReturnToShape(KimonoShape shape)
 {
     // Inform caller of event
     if (ReturnToShape != null)
     {
         ReturnToShape(shape);
     }
 }