Esempio n. 1
0
        private void EditBut_Click(object sender, RoutedEventArgs e)
        {
            Transaction   transaction   = (Transaction)(sender as Button).Tag;
            CommentWindow commentWindow = new CommentWindow(transaction, transaction.Comment, transaction.Parent.GetMainWindow());

            commentWindow.ShowDialog();
        }
        private void btn_addComment_Click(object sender, RoutedEventArgs e)
        {
            CommentWindow commentWindow = new CommentWindow();

            if (commentWindow.ShowDialog() == true)
            {
                taskContract.AddComment(commentWindow.CurrentText,
                                        (this.DataContext as Task).ID,
                                        GlobalSettings.CurrentUser.ID);
                UpdateComment((this.DataContext as Task).ID);
            }
        }
Esempio n. 3
0
        // коментарии
        void btnComment_Click(object sender, RoutedEventArgs e)
        {
            var btn = sender as Button;

            if (btn == null || !(btn.Tag is Project))
            {
                return;
            }

            var win = new CommentWindow((Project)btn.Tag)
            {
                Owner = Window.GetWindow(this)
            };

            win.ShowDialog();
        }
        private void commentButton_Click(object sender, RoutedEventArgs e)
        {
            CommentWindow commentWnd = new CommentWindow(this.currentAppItem.Id);

            commentWnd.ShowDialog();
        }
Esempio n. 5
0
        private void Comments(object sender, RoutedEventArgs e)
        {
            CommentWindow window = new CommentWindow();

            window.ShowDialog();
        }