コード例 #1
0
        private void gridWebChatSurveys_CellDoubleClick(object sender, ODGridClickEventArgs e)
        {
            WebChatSession     webChatSession     = (WebChatSession)gridWebChatSurveys.ListGridRows[e.Row].Tag;
            FormWebChatSession formWebChatSession = new FormWebChatSession(webChatSession, () => { });

            formWebChatSession.ShowDialog();
        }
コード例 #2
0
        private void gridWebChatSessions_CellDoubleClick(object sender, UI.ODGridClickEventArgs e)
        {
            FormWebChatSession form = new FormWebChatSession((WebChatSession)gridWebChatSessions.ListGridRows[e.Row].Tag,
                                                             () => {
                FillGridWebChats();                        //Refresh to show if session ended or if tech has been assigned to the session.
            });

            form.Show();
        }