XML comments do not show up when an object instance is defined using WithEvents; however, comments will show up for everything else. How do I resolve this?
EDIT
''' <summary>
''' Represents a <see cref="System.Windows.Forms.Button"/> control that when clicked displays the associated <see cref="System.Windows.Forms.CheckBox"/> controls which the user can use to toggle elements.
''' </summary>
Public WithEvents DropDownButton As New System.Windows.Forms.Button


Privateand, if you need to expose them publicly, do so via aPublicproperty. If there actually is an issue with fields declaredWithEvents, it will be a moot point because the XML documentation will be on the property anyway.WithEventsFields (which should not be exposed) is to add an underscore in the XML documentation, before theF:Namedescriptor, so it does not appear. -- RemoveWithEvents, this doesn't really look like it's as an object handled by the Designer.