Mini Kabibi Habibi
Imports Microsoft.VisualBasic
Imports System
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
Imports System.Text
Imports System.Windows.Forms
Namespace PhotoViewer
Partial Public Class ProgressForm
Inherits Form
Public Sub New()
InitializeComponent()
End Sub
Public ReadOnly Property ProgressControl() As ProgressControl
Get
Return progressControl1
End Get
End Property
Protected Overrides Sub OnLoad(ByVal e As EventArgs)
MyBase.OnLoad(e)
CenterToParent()
End Sub
End Class
End Namespace