Exemplo n.º 1
0
 /// <summary>
 /// get the location/settings of various widgets so that we can restore them
 /// </summary>
 protected void DepersistLayout()
 {
     if (System.IO.File.Exists(LayoutPersistPath))
     {
         try
         {
             NavPane.LoadLayout(LayoutPersistPath);
         }
         catch (Exception)
         {}
     }
 }
Exemplo n.º 2
0
        /// <summary>
        /// get the location/settings of various widgets so that we can restore them
        /// </summary>
        protected void DepersistLayout()
        {
#if USE_DOTNETBAR
            if (System.IO.File.Exists(LayoutPersistPath))
            {
                try
                {
                    NavPane.LoadLayout(LayoutPersistPath);
                }
                catch (Exception)
                {}
            }
#else
            // use MyPanel
#endif
        }