다음을 통해 공유


ScheduledToastNotificationShowingEventArgs.Cancel 속성

정의

Windows에서 알림의 기본 처리를 수행해야 하는지 여부를 가져오거나 설정합니다.

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

void Cancel(bool value);
public bool Cancel { get; set; }
var boolean = scheduledToastNotificationShowingEventArgs.cancel;
scheduledToastNotificationShowingEventArgs.cancel = boolean;
Public Property Cancel As Boolean

속성 값

Boolean

bool

시스템이 기본 처리를 수행할 수 있도록 하려면 false 로 설정합니다(사용자 및 시스템 설정이 적용됨). 앱이 알림을 처리했으며 기본 처리를 수행해서는 안 됨을 시스템에 알리려면 true 로 설정합니다. 기본 값은 false입니다.

적용 대상