Пример #1
0
 /// <summary>
 /// Ensures a point is drawn in its normal color.
 /// </summary>
 /// <param name="point">The point that needs to be drawn normally</param>
 void SetNormalColor(PointFeature point)
 {
     // Redraw in idle time
     if (point != null)
     {
         m_Command.ErasePainting();
     }
 }
Пример #2
0
 /// <summary>
 /// Ensures the currently selected point (if any) is drawn in its normal color.
 /// </summary>
 void SetNormalColor()
 {
     if (m_Point != null)
     {
         m_Parent.ErasePainting();
     }
 }