How can I have a custom activity property to display a drop down list of options to pick from?
You can use the template given below, from which you can create a custom type converter. For a type converter to show up for a property, associate the type converter with the property by providing the TypeConverter attribute as shown in the code: [TypeConverter(typeof(ParameterLookupConverter))] public string MyName { get { return _myName; } set { _myName = value; } } internal class ParameterLookupConverter : TypeConverter { public ParameterLookupConverter() { } ///
/// ///
/// ///
Related Questions
- If I book a transfer (inter-island flights, boat or land transfer) or an activity, how the schedule and pick up / drop off locations will be planned?
- When I pick an option from the choices of the drop down list i.e., Fuel Surcharge, Bulkies, etc. Why isnt that choice reflected in the price?
- How does it process custom flashings, i.e. enter girth & bends or pick from a pre-determined list?