public ScanWaypointsDialog(int foundCount, WaypointWidget widget, MatchCollection matches)
 {
     this.Build();
     this.msgLabel.Text = String.Format(Catalog.GetString("OCM found {0} waypoints in the cache description. " +
                                                          "You can add them all automatically, or review the matches one by one."), foundCount);
     m_widget  = widget;
     m_matches = matches;
 }
 public ReviewWaypointDialog(WaypointWidget widget)
 {
     this.Build ();
     m_widget = widget;
     m_App = widget.App;
     reviewWidget.ParentCache = widget.Cache;
     reviewWidget.App = widget.App;
 }
Esempio n. 3
0
 public ReviewWaypointDialog(WaypointWidget widget)
 {
     this.Build();
     m_widget = widget;
     m_App    = widget.App;
     reviewWidget.ParentCache = widget.Cache;
     reviewWidget.App         = widget.App;
 }
 public ScanWaypointsDialog(int foundCount, WaypointWidget widget, MatchCollection matches)
 {
     this.Build ();
     this.msgLabel.Text = String.Format(Catalog.GetString("OCM found {0} waypoints in the cache description. " +
         "You can add them all automatically, or review the matches one by one."), foundCount);
     m_widget = widget;
     m_matches = matches;
 }
 public ReviewWaypointDialog(WaypointWidget widget)
 {
     this.Build ();
     m_widget = widget;
 }