ProgressBar.IsIndeterminate 속성

정의

ProgressBar에 실제 값이 표시되는지 아니면 일반적인 진행 상태 피드백이 지속적으로 표시되는지를 가져오거나 설정합니다.

public:
 property bool IsIndeterminate { bool get(); void set(bool value); };
public bool IsIndeterminate { get; set; }
member this.IsIndeterminate : bool with get, set
Public Property IsIndeterminate As Boolean

속성 값

Boolean

ProgressBar에 실제 값이 표시되면 false이고, ProgressBar에 일반 진행 상태가 표시되면 true입니다. 기본값은 false입니다.

예제

다음 예제에서는 제네릭 진행률을 보여 주는 속성을 만들 ProgressBar 도록 true 설정합니다IsIndeterminate.

ProgressBar progbar = new ProgressBar();
progbar.Background = Brushes.Gray;
progbar.Foreground = Brushes.Red;
progbar.Width = 150;
progbar.Height = 15;
progbar.IsIndeterminate = true;
Dim progbar As New ProgressBar()
progbar.Background = Brushes.Gray
progbar.Foreground = Brushes.Red
progbar.Width = 150
progbar.Height = 15
progbar.IsIndeterminate = True

설명

이 속성인 경우 trueProgressBar 연속 방식으로 이동하는 몇 개의 막대에 ProgressBar 애니메이션 효과를 주고 속성을 무시합니다Value.

종속성 속성 정보

식별자 필드 IsIndeterminateProperty
메타 데이터 속성 설정 true 없음

적용 대상