LoadWindowPosition() публичный Метод

Load the top, left, width, and height of the window from the registry, use default application parameters if not present in registry. This should be called from OnLayout; it takes effect in the first call AFTER EndInit.
public LoadWindowPosition ( ) : void
Результат void
 /// <summary>
 /// Override to restore position.
 /// </summary>
 protected override void OnLayout(LayoutEventArgs levent)
 {
     base.OnLayout(levent);
     m_persistence.LoadWindowPosition();
 }