ProgressBar.Minimum プロパティ

定義

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

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

プロパティ値

Int32

範囲の最小値。 既定値は 0 です。

例外

プロパティに対して指定された値が 0 未満です。

次のコード例では、コントロールを ProgressBar 使用してファイルコピー操作の進行状況を表示します。 この例では、and Maximum プロパティをMinimum使用して、コピーするファイルの数と同じ範囲ProgressBarを指定します。 また、このコードでは、 Step このプロパティをメソッドと共に PerformStep 使用して、コピーされるファイルの値 ProgressBar をインクリメントします。 この例では、呼び出されたpBar1コントロールを作成し、その中にForm作成されたメソッド (ファイル コピー操作が正常に完了したことを示すブール値を返す) が作成CopyFileされ、ファイル コピー操作を実行する必要ProgressBarがあります。 また、このコードでは、コピーするファイルを含む文字列の配列を作成し、この例で定義されているメソッドに 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 指定します。 プロパティの値が Minimum 変更されると、コントロールの ProgressBar 新しい範囲を反映するようにコントロールが再描画されます。 プロパティの値がプロパティの ValueMinimum と等しい場合、進行状況バーは空です。 進行状況バーの値を変更するには、メソッドでプロパティをStepPerformStep使用するか、メソッドをIncrement使用するか、プロパティの値をValue直接設定します。

適用対象

こちらもご覧ください