티스토리 뷰
1 2 3 4 | Title="MainWindow" Height="100" Width="300" ContentRendered="Window_ContentRendered"> <Grid Margin="20"> <ProgressBar Minimum="0" Maximum="100" Name="pbStatus" /> </Grid> | cs |
http://www.wpf-tutorial.com/misc-controls/the-progressbar-control/
ProgressBar는 현재 진행 중인 프로세스의 진행에 대한 내용을 시각적으로 보여줍니다.
1 2 3 | <Grid Margin="20"> <ProgressBar Minimum="0" Maximum="100" Value="75" /> </Grid> | cs |
Showing progress while performing a lengthy task
쓰레드에서 많은 작업을 수행하게 되면, ProgressBar는 진행상황에 대한 업데이트를 반영하기 힘듭니다.
1 2 3 4 | Title="MainWindow" Height="100" Width="300" ContentRendered="Window_ContentRendered"> <Grid Margin="20"> <ProgressBar Minimum="0" Maximum="100" Name="pbStatus" /> </Grid> | cs |
1 2 3 4 5 6 7 8 | using System.Threading; private void Window_ContentRendered(object sender, EventArgs e) { for (int i = 0; i < 100; i++) { pbStatus.Value++; Thread.Sleep(100); } } | cs |
대신 worker 쓰레드를 수행하자마자, UI쓰레드에 업데이트하면, 즉각적으로 진행할 수 있고, 이것들의 업데이트를 보여줄 수 있습니다.
이러한 작업을 위하여 BackgroundWorker class가 있습니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | using System.Threading; using System.ComponentModel; private void Window_ContentRendered(object sender, EventArgs e) { BackgroundWorker worker = new BackgroundWorker(); worker.WorkerReportsProgress = true; worker.DoWork += worker_DoWork; worker.ProgressChanged += worker_ProgressChanged; worker.RunWorkerAsync(); } private void worker_ProgressChanged(object sender, ProgressChangedEventArgs e) { pbStatus.Value = e.ProgressPercentage; } private void worker_DoWork(object sender, DoWorkEventArgs e) { for(int i=0; i<100; i++) { (sender as BackgroundWorker).ReportProgress(i); Thread.Sleep(100); } } | cs |
Indeterminate
어떠한 작업들은 퍼센트로 진행률을 표시하는 것이 불가능하거나 얼마나 걸릴지 알 수 없습니다.
이러한 상황을 위하여 IsIndeterminate 속성을 사용하여 표시합니다.
1 2 3 | <Grid Margin="20"> <ProgressBar Minimum="0" Maximum="100" Name="pbStatus" IsIndeterminate="True"/> </Grid> | cs |
ProgressBar with Text
WPF ProgressBar는 진행률을 progress bar로 보여줄 뿐만 아니라, 텍스트로도 보여줄 수 있습니다.
1 2 3 4 | <Grid Margin="20"> <ProgressBar Minimum="0" Maximum="100" Name="pbStatus"/> <TextBlock Text="{Binding ElementName=pbStatus, Path=Value, StringFormat={}{0:0}%}" HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock> </Grid> | cs |
'C# > WPF' 카테고리의 다른 글
WPF tutorial - The ItemsControl (1) | 2017.07.02 |
---|---|
WPF tutorial - Using the WPF TabControl (0) | 2017.07.02 |
WPF tutorial - The Slider control (0) | 2017.07.02 |
WPF tutorial - The Border control (0) | 2017.07.02 |
WPF tutorial - The Ribbon control (0) | 2017.07.02 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- Add TapGesture
- BOJ
- 코딩야학
- 생활코딩
- listview
- CollectionView
- WPF
- 문자열
- FEED
- BFS
- UIView Animation
- CustomCollectionViewCell
- Custom Cell
- command
- Grid
- dfs
- Fakebook
- Cell Animation
- DP
- 스택
- 그래프
- 백준
- XAML
- C++
- 데이터 바인딩
- 객체
- 백준온라인
- 타일링
- MVVM
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함