Ejemplo n.º 1
0
        private void CommentsMenuItem_Click(object sender, EventArgs e)
        {
            var form = new EditCommentsForm();

            form.GetMovie(CurrentTasMovie);
            form.ForceReadWrite = true;
            form.Show();
        }
Ejemplo n.º 2
0
        private void CommentsBtn_Click(object sender, EventArgs e)
        {
            var indices = MovieView.SelectedIndices;

            if (indices.Count > 0)
            {
                var form = new EditCommentsForm(_movieList[MovieView.SelectedIndices[0]], _movieSession.ReadOnly);
                form.Show();
            }
        }
Ejemplo n.º 3
0
		private void ViewCommentsContextMenuItem_Click(object sender, EventArgs e)
		{
			if (Global.MovieSession.Movie.IsActive)
			{
				var form = new EditCommentsForm();
				form.GetMovie(Global.MovieSession.Movie);
				form.ShowDialog();
			}
		}
Ejemplo n.º 4
0
		private void CommentsMenuItem_Click(object sender, EventArgs e)
		{
			var form = new EditCommentsForm();
			form.GetMovie(CurrentTasMovie);
			form.ForceReadWrite = true;
			form.Show();
		}
Ejemplo n.º 5
0
		private void CommentsBtn_Click(object sender, EventArgs e)
		{
			var indices = MovieView.SelectedIndices;
			if (indices.Count > 0)
			{
				var form = new EditCommentsForm();
				form.GetMovie(_movieList[MovieView.SelectedIndices[0]]);
				form.Show();
			}
		}
Ejemplo n.º 6
0
		private void CommentsMenuItem_Click(object sender, EventArgs e)
		{
			var form = new EditCommentsForm();
			form.GetMovie(_tas);
			form.ShowDialog();
		}