Completed
Last Updated: 30 Oct 2017 06:39 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 25 Oct 2017 12:45
Category: Form
Type: Bug Report
2
FIX. RadMessageBox - incorrect position when showing RadMessageBox for the first time
Workaround:   
  Sub New()
         
        InitializeComponent()
        AddHandler RadMessageBox.Instance.LocationChanged, AddressOf MsgLocationChanged
    End Sub
    Private Sub MsgLocationChanged(sender As Object, e As EventArgs)
        RadMessageBox.Instance.Location = New Point(Me.Location.X + Me.Width / 2 - RadMessageBox.Instance.Width / 2, _
                                                    Me.Location.Y + Me.Height / 2)
    End Sub
0 comments