Ejemplo n.º 1
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.º 2
0
		private void CommentsMenuItem_Click(object sender, EventArgs e)
		{
			var form = new EditCommentsForm();
			form.GetMovie(CurrentTasMovie);
			form.ForceReadWrite = true;
			form.Show();
		}
Ejemplo n.º 3
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();
			}
		}