Exemple #1
0
 public void DoSelectIndexChange(int index)
 {
     if (CurrentCrossHairDataProvider != null)
     {
         CurrentCrossHairDataProvider.DoSelectIndexChange(index);
     }
 }
Exemple #2
0
 public void DoRedraw(Graphics g, Rectangle rect)
 {
     if (CurrentCrossHairDataProvider != null)
     {
         CurrentCrossHairDataProvider.DoRedraw(g, rect);
     }
 }
Exemple #3
0
 public void DoRedraw()
 {
     if (CurrentCrossHairDataProvider != null)
     {
         CurrentCrossHairDataProvider.DoRedraw();
     }
 }
Exemple #4
0
 public void DrawSelectBlock(Graphics g)
 {
     if (CurrentCrossHairDataProvider != null)
     {
         CurrentCrossHairDataProvider.DrawSelectBlock(g);
     }
 }
Exemple #5
0
 public Point GetCrossHairPoint(int selectIndex)
 {
     if (CurrentCrossHairDataProvider != null)
     {
         return(CurrentCrossHairDataProvider.GetCrossHairPoint(selectIndex));
     }
     return(default(Point));
 }
Exemple #6
0
 public bool DoMovePrev()
 {
     if (CurrentCrossHairDataProvider != null)
     {
         return(CurrentCrossHairDataProvider.DoMovePrev());
     }
     return(false);
 }
Exemple #7
0
 public Pen GetPen()
 {
     if (CurrentCrossHairDataProvider != null)
     {
         return(CurrentCrossHairDataProvider.GetPen());
     }
     return(null);
 }