Skip to content

Commit 8460e8f

Browse files
author
mikeblome
committed
fixes #1030
1 parent c0fdd99 commit 8460e8f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/cppcx/events-c-cx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Events (C++/CX)"
3-
ms.date: "01/22/2017"
3+
ms.date: "07/15/2019"
44
ms.assetid: 31c8e08a-00ad-40f9-8f7e-124864aaad58
55
---
66
# Events (C++/CX)
@@ -9,7 +9,7 @@ A Windows Runtime type can declare (that is, publish) events, and client code in
99

1010
## Consuming events in Windows components
1111

12-
Many components in the Windows Runtime expose events. For example, a LightSensor object fires a ReadingChanged event when the sensor reports a new luminescence value. When you use a LightSensor object in your program, you can define a method that will be called when the ReadingChanged event is fired. The method can do whatever you want it to do; the only requirement is that its signature must match the signature of the delegate that is For more information about how to create an delegate event handler and subscribe to an event, see [Delegates](../cppcx/delegates-c-cx.md).
12+
Many components in the Windows Runtime expose events. For example, a LightSensor object fires a ReadingChanged event when the sensor reports a new luminescence value. When you use a LightSensor object in your program, you can define a method that will be called when the ReadingChanged event is fired. The method can do whatever you want it to do; the only requirement is that its signature must match the signature of the delegate that is invoked. For more information about how to create an delegate event handler and subscribe to an event, see [Delegates](../cppcx/delegates-c-cx.md).
1313

1414
## Creating custom events
1515

0 commit comments

Comments
 (0)