ProgressBar.Maximum プロパティ

定義

コントロールの範囲の最大値を取得または設定します。

public:
 property int Maximum { int get(); void set(int value); };
public int Maximum { get; set; }
member this.Maximum : int with get, set
Public Property Maximum As Integer

プロパティ値

Int32

範囲の最大値。 既定値は、100 です。

例外

指定された値が 0 未満です。

次のコード例では、コントロールを ProgressBar 使用してファイルコピー操作の進行状況を表示します。 この例では、and Maximum プロパティをMinimum使用して、コピーするファイルの数と同じ範囲ProgressBarを指定します。 また、このコードでは、 Step このプロパティをメソッドと共に PerformStep 使用して、コピーされるファイルの値 ProgressBar をインクリメントします。 この例では、ファイルコピー操作を ProgressBar 実行するメソッドが作成 pBar1 され、その中に Form 作成されたメソッド (ファイルコピー操作が正常に完了したことを示すブール値を返す) が作成 CopyFile されている必要があります。 また、このコードでは、コピーするファイルを含む文字列の配列を作成し、この例で定義されているメソッドに CopyWithProgress 渡し、メソッドを別のメソッドまたはイベント Formから呼び出す必要もあります。

private:
   void CopyWithProgress( array<String^>^filenames )
   {
      // Display the ProgressBar control.
      pBar1->Visible = true;

      // Set Minimum to 1 to represent the first file being copied.
      pBar1->Minimum = 1;

      // Set Maximum to the total number of files to copy.
      pBar1->Maximum = filenames->Length;

      // Set the initial value of the ProgressBar.
      pBar1->Value = 1;

      // Set the Step property to a value of 1 to represent each file being copied.
      pBar1->Step = 1;

      // Loop through all files to copy.
      for ( int x = 1; x <= filenames->Length; x++ )
      {
         // Copy the file and increment the ProgressBar if successful.
         if ( CopyFile( filenames[ x - 1 ] ) == true )
         {
            // Perform the increment on the ProgressBar.
            pBar1->PerformStep();
         }
      }
   }
private void CopyWithProgress(string[] filenames)
{
    // Display the ProgressBar control.
    pBar1.Visible = true;
    // Set Minimum to 1 to represent the first file being copied.
    pBar1.Minimum = 1;
    // Set Maximum to the total number of files to copy.
    pBar1.Maximum = filenames.Length;
    // Set the initial value of the ProgressBar.
    pBar1.Value = 1;
    // Set the Step property to a value of 1 to represent each file being copied.
    pBar1.Step = 1;
    
    // Loop through all files to copy.
    for (int x = 1; x <= filenames.Length; x++)
    {
        // Copy the file and increment the ProgressBar if successful.
        if(CopyFile(filenames[x-1]) == true)
        {
            // Perform the increment on the ProgressBar.
            pBar1.PerformStep();
        }
    }
}
Private Sub CopyWithProgress(ByVal ParamArray filenames As String())
    ' Display the ProgressBar control.
    pBar1.Visible = True
    ' Set Minimum to 1 to represent the first file being copied.
    pBar1.Minimum = 1
    ' Set Maximum to the total number of files to copy.
    pBar1.Maximum = filenames.Length
    ' Set the initial value of the ProgressBar.
    pBar1.Value = 1
    ' Set the Step property to a value of 1 to represent each file being copied.
    pBar1.Step = 1

    ' Loop through all files to copy.
    Dim x As Integer
    for x = 1 To filenames.Length - 1
        ' Copy the file and increment the ProgressBar if successful.
        If CopyFile(filenames(x - 1)) = True Then
            ' Perform the increment on the ProgressBar.
            pBar1.PerformStep()
        End If
    Next x
End Sub

注釈

このプロパティは、プロパティの上限を Value 指定します。 プロパティの値が Maximum 変更されると、コントロールの ProgressBar 新しい範囲を反映するようにコントロールが再描画されます。 プロパティの値がプロパティの ValueMaximum と等しい場合、進行状況バーは完全に入力されます。

このプロパティを使用して、プロパティを設定する必要がある値をValue指定できます (プロパティをValue設定するか、またはPerformStepメソッドを使用してIncrement) 操作が完了したことを示します。 たとえば、プロパティの値を Maximum ファイル コピー操作のファイルの合計数に設定できます。 ファイルがコピーされるたびに、ファイルの Value 合計数がコピーされるまで、プロパティを 1 ずつ増やすことができます。 その時点で、進行状況バーが完全に入力されます。

適用対象

こちらもご覧ください