@@ -246,7 +246,7 @@ private static void IsPopupOpenPropertyChangedCallback(DependencyObject dependen
246
246
{
247
247
var popupOpenedEventArgs = new RoutedEventArgs ( )
248
248
{
249
- RoutedEvent = PopupOpenedEvent ,
249
+ RoutedEvent = OnPopupOpenedEvent ,
250
250
Source = popupBox
251
251
} ;
252
252
popupBox . RaiseEvent ( popupOpenedEventArgs ) ;
@@ -255,7 +255,7 @@ private static void IsPopupOpenPropertyChangedCallback(DependencyObject dependen
255
255
{
256
256
var popupClosedEventArgs = new RoutedEventArgs ( )
257
257
{
258
- RoutedEvent = PopupClosedEvent ,
258
+ RoutedEvent = OnPopupClosedEvent ,
259
259
Source = popupBox
260
260
} ;
261
261
popupBox . RaiseEvent ( popupClosedEventArgs ) ;
@@ -279,39 +279,39 @@ public bool IsPopupOpen
279
279
/// <summary>
280
280
/// Event corresponds to the popup opening
281
281
/// </summary>
282
- public static readonly RoutedEvent PopupOpenedEvent =
282
+ public static readonly RoutedEvent OnPopupOpenedEvent =
283
283
EventManager . RegisterRoutedEvent (
284
- "PopupOpened " ,
284
+ "OnPopupOpened " ,
285
285
RoutingStrategy . Bubble ,
286
286
typeof ( RoutedEventHandler ) ,
287
287
typeof ( PopupBox ) ) ;
288
288
289
289
/// <summary>
290
290
/// Event corresponds to the popup closing
291
291
/// </summary>
292
- public static readonly RoutedEvent PopupClosedEvent =
292
+ public static readonly RoutedEvent OnPopupClosedEvent =
293
293
EventManager . RegisterRoutedEvent (
294
- "PopupClosed " ,
294
+ "OnPopupClosed " ,
295
295
RoutingStrategy . Bubble ,
296
296
typeof ( RoutedEventHandler ) ,
297
297
typeof ( PopupBox ) ) ;
298
298
299
299
/// <summary>
300
- /// Add / Remove PopupOpenedEvent handler
300
+ /// Add / Remove OnPopupOpenedEvent handler
301
301
/// </summary>
302
- public event RoutedEventHandler PopupOpened
302
+ public event RoutedEventHandler OnPopupOpened
303
303
{
304
- add { AddHandler ( PopupOpenedEvent , value ) ; }
305
- remove { RemoveHandler ( PopupOpenedEvent , value ) ; }
304
+ add { AddHandler ( OnPopupOpenedEvent , value ) ; }
305
+ remove { RemoveHandler ( OnPopupOpenedEvent , value ) ; }
306
306
}
307
307
308
308
/// <summary>
309
- /// Add / Remove PopupClosedEvent handler
309
+ /// Add / Remove OnPopupClosedEvent handler
310
310
/// </summary>
311
- public event RoutedEventHandler PopupClosed
311
+ public event RoutedEventHandler OnPopupClosed
312
312
{
313
- add { AddHandler ( PopupClosedEvent , value ) ; }
314
- remove { RemoveHandler ( PopupClosedEvent , value ) ; }
313
+ add { AddHandler ( OnPopupClosedEvent , value ) ; }
314
+ remove { RemoveHandler ( OnPopupClosedEvent , value ) ; }
315
315
}
316
316
317
317
0 commit comments