Implementing a property page for an ArcGIS Engine application
PropertySheet.Designer.vb
' Copyright 2012 ESRI
' 
' All rights reserved under the copyright laws of the United States
' and applicable international laws, treaties, and conventions.
' 
' You may freely redistribute and use this sample code, with or
' without modification, provided you include the original copyright
' notice and use restrictions.
' 
' See the use restrictions.
' 

Imports Microsoft.VisualBasic
Imports System
Namespace SymbolSelector
  Public Partial Class PropertySheet
  ''' <summary> 
  ''' Required designer variable.
  ''' </summary>
  Private components As System.ComponentModel.IContainer = Nothing

  ''' <summary> 
  ''' Clean up any resources being used.
  ''' </summary>
  ''' <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  Protected Overrides Sub Dispose(ByVal disposing As Boolean)
    If disposing AndAlso (Not components Is Nothing) Then
    components.Dispose()
    End If
    MyBase.Dispose(disposing)
  End Sub

  #Region "Component Designer generated code"

  ''' <summary> 
  ''' Required method for Designer support - do not modify 
  ''' the contents of this method with the code editor.
  ''' </summary>
  Private Sub InitializeComponent()
    Me.SuspendLayout()
    ' 
    ' PropertySheet
    ' 
    Me.AutoScaleDimensions = New System.Drawing.SizeF(6F, 13F)
    Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
    Me.Name = "PropertySheet"
    Me.Size = New System.Drawing.Size(450, 380)
    Me.ResumeLayout(False)

  End Sub

  #End Region
  End Class
End Namespace