| BasePropertyPageCustomControls Property |
This is used to access the custom control property mapping dictionary
Namespace: SandcastleBuilder.Package.PropertyPagesAssembly: SandcastleBuilderGUI (in SandcastleBuilderGUI.exe) Version: 2014.11.22.0
Syntax public static Dictionary<string, string> CustomControls { get; }
Public Shared ReadOnly Property CustomControls As Dictionary(Of String, String)
Get
public:
static property Dictionary<String^, String^>^ CustomControls {
Dictionary<String^, String^>^ get ();
}
static member CustomControls : Dictionary<string, string> with get
Property Value
Type:
DictionaryString,
StringRemarks The class recognizes the basic edit controls and those derived from them. If you have
custom controls that it does not recognize (i.e. those derived from
UserControl), you can add
them to this dictionary using the fully qualified type name including namespaces and the property
value to use for binding as the value for the entry.
NOTE:You only need to add controls to this property if it is not derived from one of the
standard edit controls (see
BindProperties(ControlControlCollection) for more information).
This property is static so it can be populated once at start-up for use throughout the
application's lifetime.
Examples
BasePropertyPage.CustomControls.Add(
"EWSoftware.ListControls.MultiColumnComboBox",
"SelectedValue");
See Also