Share via


DispatcherQueueTimer.IsRepeating 속성

정의

타이머가 반복되는지 여부를 나타냅니다.

public:
 property bool IsRepeating { bool get(); void set(bool value); };
bool IsRepeating();

void IsRepeating(bool value);
public bool IsRepeating { get; set; }
var boolean = dispatcherQueueTimer.isRepeating;
dispatcherQueueTimer.isRepeating = boolean;
Public Property IsRepeating As Boolean

속성 값

Boolean

bool

true 은 타이머가 모든 DispatcherQueueTimer.Interval을 실행한다는 것을 나타냅니다. falseDispatcherQueueTimer.Interval 이 경과한 후 한 번 발생한다는 의미입니다.

설명

IsRepeating의 기본값은 입니다true. 타이머가 실행되는 동안 IsRepeating 값을 변경하면 타이머가 새 값으로 다시 시작됩니다.

적용 대상