public class ChooserSA : IDisposablePublic Class ChooserSA
Implements IDisposableCalling Chooser.Choose() causes a chooser window to appear, with a drop down selector list containing all of the registered Telescope drivers, listed by the driver's friendly/display name. The user sees a list of telescope types and selects one. Before the OK button will light up, however, the user must click the Setup button, causing the selected driver's setup dialog to appear (it calls the driver's Telescope.SetupDialog() method). When the setup dialog is closed, the OK button will light and allow the user to close the Chooser itself.
The Choose() method returns the DriverID of the selected driver. Choose() allows you to optionally pass the DriverID of a "current" driver (you probably save this in the registry), and the corresponding telescope type is pre-selected in the Chooser's list. In this case, the OK button starts out enabled (lit-up); the assumption is that the pre-selected driver has already been configured.
| ChooserSA | Creates a new Chooser object |
| DeviceType | The type of device for which the Chooser will select a driver. (String, default = "Telescope") |
| Choose | Select ASCOM driver to use without pre-selecting in the dropdown list |
| Choose(String) | Select an ASCOM driver to use, pre-selecting one in the drop-down list |
| Choose(DeviceTypes, String, ILogger) | Static method to select a device without having to create a ChooserSA instance. |
| Dispose | Cleans up and disposes objects used by Chooser |
| Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
| GetHashCode | Serves as the default hash function. (Inherited from Object) |
| GetType | Gets the Type of the current instance. (Inherited from Object) |
| ToString | Returns a string that represents the current object. (Inherited from Object) |