Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
全長がわからない場合、プログレスバーを完全にループするにはどうすればよいですか。これを試したとき、ループが最初に終了し、進行状況バーは40%のようになります
for (int i = 0; i < files.Length; i++) { progressBar1.Value = i; Convert(files[i]); }
設定してみる
progressBar1.Maximum = files.Length;
あなたのループの前に
MSDN - ProgressBar.Maximum