2 instantiations of ScrolledEventArgs
Microsoft.Maui.Controls (1)
ScrollView\ScrollView.cs (1)
111
Scrolled?.Invoke(this, new
ScrolledEventArgs
(x, y));
Microsoft.Maui.Controls.Compatibility (1)
iOS\Renderers\ListViewRenderer.cs (1)
1291
var args = new
ScrolledEventArgs
(scrollView.ContentOffset.X, scrollView.ContentOffset.Y);
6 references to ScrolledEventArgs
Microsoft.Maui.Controls (4)
ListView\ListView.cs (2)
345
public void SendScrolled(
ScrolledEventArgs
args)
382
public event EventHandler<
ScrolledEventArgs
> Scrolled;
ScrollView\ScrollView.cs (1)
238
public event EventHandler<
ScrolledEventArgs
> Scrolled;
SwipeView\SwipeView.cs (1)
347
void OnParentScrolled(object? sender,
ScrolledEventArgs
e)
Microsoft.Maui.Controls.Compatibility (2)
iOS\Renderers\ListViewRenderer.cs (1)
1291
var
args = new ScrolledEventArgs(scrollView.ContentOffset.X, scrollView.ContentOffset.Y);
iOS\Renderers\SwipeViewRenderer.cs (1)
1506
void OnParentScrolled(object sender,
ScrolledEventArgs
e)