@@ -85,7 +85,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
8585 ''' <param name="Hierarchy"></param>
8686 ''' <param name="ItemId"></param>
8787 ''' <param name="PropertyPageInfo"></param>
88- ''' <remarks></remarks>
8988 Public Sub New (View As ApplicationDesignerView, Hierarchy As IVsHierarchy, ItemId As UInteger, PropertyPageInfo As PropertyPageInfo)
9089 Me .New(View, Hierarchy, ItemId)
9190
@@ -105,7 +104,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
105104 ''' <param name="View">The owning project designer view</param>
106105 ''' <param name="Hierarchy"></param>
107106 ''' <param name="ItemId"></param>
108- ''' <remarks></remarks>
109107 Public Sub New (View As ApplicationDesignerView, Hierarchy As IVsHierarchy, ItemId As UInteger)
110108 Debug.Assert(View IsNot Nothing )
111109 Debug.Assert(Hierarchy IsNot Nothing )
@@ -130,8 +128,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
130128 ''' Returns the PropertyPageInfo for this designer panel, if it corresponds to a property page.
131129 ''' Otherwise returns Nothing.
132130 ''' </summary>
133- ''' <value></value>
134- ''' <remarks></remarks>
135131 Public ReadOnly Property PropertyPageInfo() As PropertyPageInfo
136132 Get
137133 Return _propertyPageInfo
@@ -169,8 +165,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
169165 ''' Provides a custom view control that can be displayed instead of hosting a designer. We can display either
170166 ''' a custom view provider or a hosted designer, but not both at once.
171167 ''' </summary>
172- ''' <value></value>
173- ''' <remarks></remarks>
174168 Public Property CustomViewProvider() As CustomViewProvider
175169 Get
176170 Return _customViewProvider
@@ -572,7 +566,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
572566 ''' <summary>
573567 ''' Notify the shell of the current selection so that the Project menus etc. are correct
574568 ''' </summary>
575- ''' <remarks></remarks>
576569 Private Sub UpdateSelection()
577570 Common.Switches.TracePDPerfBegin( "ApplicationDesignerPanel.UpdateSelection" )
578571 'When we call IVsWindowFrame.Hide() on a tab (when changing to another tab), the shell nulls out the
@@ -653,9 +646,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
653646 ''' <summary>
654647 ''' Get/set the window frame owned by this panel
655648 ''' </summary>
656- ''' <value></value>
657- ''' <returns></returns>
658- ''' <remarks></remarks>
659649 Public Property VsWindowFrame() As IVsWindowFrame
660650 Get
661651 Return _vsWindowFrame
@@ -679,8 +669,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
679669 ''' The Guid used by the editor for this panel. For property pages, this is always
680670 ''' PropPageDesignerView's guid.
681671 ''' </summary>
682- ''' <value></value>
683- ''' <remarks></remarks>
684672 Public Property EditorGuid() As Guid
685673 Get
686674 Return _editorGuid
@@ -699,8 +687,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
699687 ''' The Guid used by the object actually represented in this panel. For property pages,
700688 ''' this is the guid of the property page. For all others, this is the same as EditorGuid.
701689 ''' </summary>
702- ''' <value></value>
703- ''' <remarks></remarks>
704690 Public ReadOnly Property ActualGuid() As Guid
705691 Get
706692 If _propertyPageInfo IsNot Nothing Then
@@ -714,8 +700,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
714700 ''' <summary>
715701 ''' Physical view guid for the editor
716702 ''' </summary>
717- ''' <value></value>
718- ''' <remarks></remarks>
719703 Public Property PhysicalView() As String
720704 Get
721705 Return _physicalView
@@ -728,8 +712,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
728712 ''' <summary>
729713 ''' The editor's caption
730714 ''' </summary>
731- ''' <value></value>
732- ''' <remarks></remarks>
733715 Public Property EditorCaption() As String
734716 Get
735717 Return _editorCaption
@@ -742,8 +724,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
742724 ''' <summary>
743725 ''' The filename moniker of the file which is being edited by the editor
744726 ''' </summary>
745- ''' <value></value>
746- ''' <remarks></remarks>
747727 Public Property MkDocument() As String
748728 Get
749729 If _mkDocument <> "" Then
@@ -763,8 +743,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
763743 ''' <summary>
764744 ''' The filename moniker of the file which is being edited by the editor
765745 ''' </summary>
766- ''' <value></value>
767- ''' <remarks></remarks>
768746 Public Property CustomMkDocumentProvider() As CustomDocumentMonikerProvider
769747 Get
770748 Return _customMkDocumentProvider
@@ -778,8 +756,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
778756 ''' <summary>
779757 ''' The DocData for the editor
780758 ''' </summary>
781- ''' <value></value>
782- ''' <remarks></remarks>
783759 Public Property DocData() As Object
784760 Get
785761 Return _docData
@@ -792,8 +768,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
792768 ''' <summary>
793769 ''' The DocView for the editor
794770 ''' </summary>
795- ''' <value></value>
796- ''' <remarks></remarks>
797771 Public Property DocView() As Control
798772 Get
799773 Return _docView
@@ -806,8 +780,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
806780 ''' <summary>
807781 ''' Flags to be passed to VsUIShellOpenDocument
808782 ''' </summary>
809- ''' <value></value>
810- ''' <remarks></remarks>
811783 Public Property EditFlags() As UInteger
812784 Get
813785 Return _editFlags
@@ -820,8 +792,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
820792 ''' <summary>
821793 ''' The title that should be used for this panel's tab
822794 ''' </summary>
823- ''' <value></value>
824- ''' <remarks></remarks>
825795 Public Property TabTitle() As String
826796 Get
827797 Return _tabTitle
@@ -843,8 +813,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
843813 ''' <summary>
844814 ''' The name for the tab that is not localized and is seen by QA automation tools
845815 ''' </summary>
846- ''' <value></value>
847- ''' <remarks></remarks>
848816 Public Property TabAutomationName() As String
849817 Get
850818 Return _tabAutomationName
@@ -860,7 +828,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
860828 ''' same size as the hosting panel (as if it were dock filled). This sets the native
861829 ''' window's size to the size of the hosting panel.
862830 ''' </summary>
863- ''' <remarks></remarks>
864831 Protected Sub UpdateWindowFrameBounds()
865832 'Note: don't need to worry about updating size of CustomView because it's set to dock fill
866833 If VsWindowFrame IsNot Nothing Then
@@ -900,7 +867,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
900867 ''' Commits any pending changes on the designer
901868 ''' </summary>
902869 ''' <returns>return False if it failed</returns>
903- ''' <remarks></remarks>
904870 Public Function CommitPendingEdit() As Boolean
905871 If VsWindowFrame IsNot Nothing Then
906872 Dim docViewObject As Object = Nothing
@@ -996,8 +962,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
996962 ''' <summary>
997963 ''' Returns true if this page should show the '*' dirty indicator in its tab
998964 ''' </summary>
999- ''' <returns></returns>
1000- ''' <remarks></remarks>
1001965 Public Function IsDirty() As Boolean
1002966 If IsPropertyPage Then
1003967 'CONSIDER: If we decide to support IVsDocDataContainer, then DocDatas contained by the property
@@ -1030,7 +994,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
1030994 ''' </summary>
1031995 ''' <param name="sender"></param>
1032996 ''' <param name="e"></param>
1033- ''' <remarks></remarks>
1034997 Private Sub PageHostingPanel_HandleCreated(sender As Object , e As EventArgs) Handles _pageHostingPanel.HandleCreated
1035998 If _vsWindowFrame IsNot Nothing Then
1036999 Debug.Fail( "PageHostingPanel handle was recreated after the nested window frame's ParentHwnd property was set to its HWND. " _
@@ -1045,7 +1008,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
10451008 ''' Disposes of contained objects
10461009 ''' </summary>
10471010 ''' <param name="disposing"></param>
1048- ''' <remarks></remarks>
10491011 Protected Overloads Overrides Sub Dispose(disposing As Boolean )
10501012 If disposing Then
10511013 ' Dispose managed resources.
@@ -1145,8 +1107,6 @@ Namespace Microsoft.VisualStudio.Editors.ApplicationDesigner
11451107 ''' to avoid that we just close this property page and leave the app designer open...
11461108 ''' </summary>
11471109 ''' <param name="pgrfSaveOptions"></param>
1148- ''' <returns></returns>
1149- ''' <remarks></remarks>
11501110 Private Function OnClose( ByRef pgrfSaveOptions As UInteger) As Integer Implements IVsWindowFrameNotify2.OnClose
11511111 If _inOnClose Then
11521112 Return NativeMethods.S_OK
0 commit comments