public static void ShowSummerUpdateView() { try { MeetSummary meetSummary = ConferenceTreeView.conferenceTreeView.meetSummary; if (meetSummary != null) { meetSummary.SummerUpdateVisibility = vy.Visible; } } catch (Exception ex) { LogManage.WriteLog(typeof(ConferenceTreeItem), ex); } finally { } }
/// <summary> /// 会议纪要显示 /// </summary> void MeetSummaryShow() { try { //会议纪要类型 TreeCodeEnterEntity.Tree_LeftContentType = Common.Tree_LeftContentType.Summary; if (this.meetSummary == null) { this.meetSummary = new MeetSummary(); } this.borLeftMain.Child = this.meetSummary; //创建会议纪要 this.meetSummary.MeetSummary_DisPlay(); } catch (Exception ex) { LogManage.WriteLog(this.GetType(), ex); } finally { } }