有人可以解释这段 C# 代码在做什么吗?
// launch the camera capture when the user touch the screen
this.MouseLeftButtonUp += (s, e) => new CameraCaptureTask().Show();
// this static event is raised when a task completes its job
ChooserListener.ChooserCompleted += (s, e) =>
{
//some code here
};
我知道CameraCaptureTask是一个类并且有一个公共方法Show()。这是什么活动?什么是(s, e)
?