能告诉我吗?这段代码是执行的什么意思?
里面的Me.Count、Controls(i).Container.Name分别指的什么意思?
For i = 0 To Me.Count - 1
    If Controls(i).Container.Name = FrameXPMenu(Frame).Name Then
        If Controls(i).Container.Index = FrameXPMenu(Frame).Index Then
            If Controls(i).Top + Controls(i).Height > FrameExpandHeight Then
                FrameExpandHeight = Controls(i).Top + Controls(i).Height
            End If
        End If
    End If
Next