Creating a user interface extension page |
User interface extension pages can be property pages or wizard pages for the objects to which they are applied.
To create a user interface extension page:
Public Class MyExtensionComposer Public Overrides ReadOnly Property Pages() As List(Of BCExtensionPageControl) Get Dim pageCollection As New List(Of BCExtensionPageControl) ' Adding your page to the collection pageCollection.Add(New MyPage) Return pageCollection End Get End Property ' Extension code goes here... End Class