-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWaitForm1.vb
36 lines (31 loc) · 906 Bytes
/
WaitForm1.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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
Imports DevExpress.XtraWaitForm
Namespace WaitForm_SetDescription
Partial Public Class WaitForm1
Inherits WaitForm
Public Sub New()
InitializeComponent()
Me.progressPanel1.AutoSize = True
End Sub
#Region "Overrides"
Public Overrides Sub SetCaption(ByVal caption As String)
MyBase.SetCaption(caption)
Me.progressPanel1.Caption = caption
End Sub
Public Overrides Sub SetDescription(ByVal description As String)
MyBase.SetDescription(description)
Me.progressPanel1.Description = description
End Sub
Public Overrides Sub ProcessCommand(ByVal cmd As System.Enum, ByVal arg As Object)
MyBase.ProcessCommand(cmd, arg)
End Sub
#End Region
End Class
End Namespace