コード例 #1
0
 protected override void ShowRefresh()
 {
     Interfaces.ICommandHandler ctl = (Interfaces.ICommandHandler)CurrentlyShownControl;
     if (ctl != null)
     {
         ctl.ProcessCommand(Utility.ViewSpecificCommand.Refresh);
     }
 }
コード例 #2
0
        public void ProcessCommand(Utility.ViewSpecificCommand command)
        {
            Debug.Assert(m_CurrentCommandHandler != null);

            if (m_CurrentCommandHandler != null)
            {
                m_CurrentCommandHandler.ProcessCommand(command);
            }
        }