private void RtfTextEditor_NextEvent(object sender, EventArgs args)
        {
            KeTiDetailEditor textEditor = (KeTiDetailEditor)sender;

            #region 保存过程
            ProjectReporter.Forms.UIDoWorkProcessForm upf = new Forms.UIDoWorkProcessForm();
            upf.EnabledDisplayProgress = false;
            upf.LabalText = "正在保存,请等待...";
            upf.ShowProgress();

            try
            {
                //保存
                textEditor.OnSaveEvent();
            }
            catch (Exception ex)
            {
                MessageBox.Show("保存失败!Ex:" + ex.ToString());
            }
            finally
            {
                upf.Close();
            }
            #endregion

            if (textEditor.DetailTabs.Pages.Count - 1 == textEditor.DetailTabs.SelectedIndex)
            {
                if (ParentNavigator.Pages.Count - 1 == ParentNavigator.SelectedIndex)
                {
                    //切换到下一页
                    MainForm.Instance.SwitchToNextPage(MainForm.Instance.EditorMaps["feUI7"]);
                }
                else
                {
                    ParentNavigator.SelectedIndex += 1;
                }
            }
            else
            {
                textEditor.DetailTabs.SelectedIndex += 1;
            }
        }