Example #1
0
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Refreshes the display :)
 /// </summary>
 /// ------------------------------------------------------------------------------------
 void IRootSite.RefreshDisplay()
 {
     if (m_draftView != null)
     {
         m_draftView.RefreshDisplay();
     }
 }
Example #2
0
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Refreshes the display :)
 /// </summary>
 /// ------------------------------------------------------------------------------------
 bool IRefreshableRoot.RefreshDisplay()
 {
     if (m_draftView != null)
     {
         m_draftView.RefreshDisplay();
     }
     //Enhance: if all Refreshable descendant controls have been refreshed return true
     return(false);
 }