Files
ECO2-OD/MMM/FaderForm.vb
2018-12-09 20:18:51 +09:00

67 lines
2.3 KiB
VB.net

Public Class FaderForm
Inherits System.Windows.Forms.Form
#Region " Windows Form Designer generated code "
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
'Set the status of the form when it is created.
'Set the default values for the FaderForm.
End Sub
'Form overrides dispose to clean up the component list.
Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
If disposing Then
If Not (components Is Nothing) Then
components.Dispose()
End If
End If
MyBase.Dispose(disposing)
End Sub
Friend WithEvents ErrProvider As System.Windows.Forms.ErrorProvider
Friend WithEvents BsMain As System.Windows.Forms.BindingSource
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
<System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Me.ErrProvider = New System.Windows.Forms.ErrorProvider(Me.components)
Me.BsMain = New System.Windows.Forms.BindingSource(Me.components)
CType(Me.ErrProvider, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.BsMain, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'ErrProvider
'
Me.ErrProvider.ContainerControl = Me
'
'FaderForm
'
Me.AutoScaleBaseSize = New System.Drawing.Size(6, 14)
Me.ClientSize = New System.Drawing.Size(428, 355)
Me.DoubleBuffered = True
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow
Me.Name = "FaderForm"
Me.Text = "Base Data Form"
CType(Me.ErrProvider, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.BsMain, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
End Sub
#End Region
End Class