1 ' Licensed to the .NET Foundation under one or more agreements.
2 ' The .NET Foundation licenses this file to you under the MIT license.
3 ' See the LICENSE file in the project root for more information.
6 Imports System.ComponentModel
8 Namespace Global.Microsoft.VisualBasic.CompilerServices
10 ''' When applied to a class, the compiler will generate an implicit call to
11 ''' to a private InitializeComponent method from the default synthetic
12 ''' constructor. The compiler will also verify that this method is called
13 ''' from user defined constructors and report a warning or error if it is not.
14 ''' The IDE will honor this attribute when generating code on behalf of the
18 ''' WARNING: Do not rename this attribute or move it out of this module. Otherwise there
19 ''' are compiler changes that will need to be made
21 <AttributeUsage(AttributeTargets.Class, AllowMultiple:=False, Inherited:=False)>
22 <EditorBrowsable(EditorBrowsableState.Never)>
23 Public NotInheritable Class DesignerGeneratedAttribute