我正在使用我的代码关注 Xamarin 示例:
public App()
{
InitializeComponent();
DeviceDisplay.MainDisplayInfoChanged += OnMainDisplayInfoChanged;
}
void OnMainDisplayInfoChanged(DisplayInfoChangedEventArgs e)
{
var displayInfo = e.DisplayInfo;
}
据我所见,这与此示例中的相同:
https://docs.microsoft.com/en-us/xamarin/essentials/device-display?context=xamarin%2Fios&tabs=uwp
但它给了我错误信息:
App.xaml.cs(13,13):错误 CS0123:“OnMainDisplayInfoChanged”没有重载与委托“EventHandler”匹配 (CS0123)
谁能帮我解释一下这个错误消息的含义,如果有办法解决这个问题,请告诉我?