private void ForgetDBDiscussionState() { //forget cached state PrivateCenterCtx.DropContext(); TimingCtx.Drop(); ////////////////////// }
public PrivateCenter3(UISharedRTClient sharedClient, Main.OnDiscFrmClosing closing) { InitializeComponent(); _closing = closing; _sharedClient = sharedClient; theBadge.Hide(); PrivateCenterCtx.DropContext(); TimingCtx.Drop(); SetListeners(true); Title2 = string.Format("{0} on {1} - private dashboard", SessionInfo.Get().person.Name, SessionInfo.Get().discussion.Subject); lstTopics.ItemsSource = TopicsOfDiscussion; lstPoints.ItemsSource = OwnArgPoints; lstOtherUsers.ItemsSource = OtherUsers; lstBadgesOfOtherUser.ItemsSource = ArgPointsOfOtherUser; lblWelcome.Content = SessionInfo.Get().person.Name; _commentDismissalRecognizer = new CommentDismissalRecognizer(bigBadgeScroller, OnDismiss); theBadge.CommentDismissalRecognizer = _commentDismissalRecognizer; initializing = true; DiscussionSelectionChanged(); initializing = false; }
private void LogoutProcedures() { if (sharedClient.clienRt != null) { sharedClient.clienRt.SendLiveRequest(); } SetListeners(sharedClient, false); _discWindows.CloseAndDispose(); SessionInfo.Reset(); PublicBoardCtx.DropContext(); PrivateCenterCtx.DropContext(); }