SetupMainForm() public method

public SetupMainForm ( System theBackgroundPath, Grid grdTitle, Grid grdWindowButtons, Grid grdStatusArea, System.Windows.Controls.Border brdServerControls, string strCurrentPallette, ScaleTransform formScale, System.Windows.Controls.Border brdMessageBox ) : List
theBackgroundPath System
grdTitle System.Windows.Controls.Grid
grdWindowButtons System.Windows.Controls.Grid
grdStatusArea System.Windows.Controls.Grid
brdServerControls System.Windows.Controls.Border
strCurrentPallette string
formScale System.Windows.Media.ScaleTransform
brdMessageBox System.Windows.Controls.Border
return List
        private void ResetSettings()
        {
            //Stop the animation
            sbFadeIn.Stop();
            sbFadeOut.Stop();

            //rest for to original values
            ResetForm();

            //make the setting obejct
            mySettings = new UISettings(myUserPrefs.CurrentSkin);

            List <string> lstPaths = mySettings.SetupMainForm(pthBorder, grdTitle, grdWindowControls, grdStatusBar, brdServerControls, null, formScale, brdMessageBox);

            if (lstPaths.Count > 0)
            {
                SetAnimation(lstPaths);
            }
        }