You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets or sets a value indicating whether this behavior will remain attached after the associated element enters the viewport. When false, the behavior will remove itself after entering.
36
+
/// </summary>
37
+
publicboolIsAlwaysOn
38
+
{
39
+
get{return(bool)GetValue(IsAlwaysOnProperty);}
40
+
set{SetValue(IsAlwaysOnProperty,value);}
41
+
}
42
+
43
+
/// <summary>
44
+
/// Gets a value indicating whether associated element is fully in the ScrollViewer viewport
/// Associated element fully enter the ScrollViewer viewport event
44
26
/// </summary>
@@ -59,33 +41,6 @@ public class ViewportBehavior : BehaviorBase<FrameworkElement>
59
41
/// </summary>
60
42
publiceventEventHandlerExitingViewport;
61
43
62
-
/// <summary>
63
-
/// Gets or sets a value indicating whether this behavior will remain attached after the associated element enters the viewport. When false, the behavior will remove itself after entering.
64
-
/// </summary>
65
-
publicboolIsAlwaysOn
66
-
{
67
-
get{return(bool)GetValue(IsAlwaysOnProperty);}
68
-
set{SetValue(IsAlwaysOnProperty,value);}
69
-
}
70
-
71
-
/// <summary>
72
-
/// Gets a value indicating whether associated element is fully in the ScrollViewer viewport
0 commit comments