GanttView for WinForms
タスクの移動
GanttView の使用 > タスク操作 > タスクの移動

GanttView makes it easier for you to rearrange your tasks to occupy new positions in the project's schedule. You can move a task at run time using the up or down arrows located on the GanttView Toolbar.

Displays the process of moving tasks at run time in the GanttView.

実行時にタスクを移動する

実行時にタスクを移動するには、以下の手順に従います

  1. グリッドで移動するタスクを選択します。
  2. タスクの位置を上に移動するには タスクを上に移動 ボタンを、下に移動するには タスクを下に移動 ボタンをクリックします。
    This moves your task to a newer position in the project's schedule.

プログラム的にタスクを移動する

To move a task using code, you can use RemoveAt and Insert methods of the Collection class.
The below code snippet shows how you can move a task programmatically in the GanttView.

C#
コードのコピー
int taskindex = tasks.IndexOf("Task 1");
C1.Win.C1GanttView.Task task1 = tasks[taskindex];
tasks.RemoveAt(0);
tasks.Insert(1, task1);