提交 0256a4ff 编写于 作者: M Martin Zikmund

chore: Avoid NRE

上级 4ef38b2d
......@@ -132,7 +132,7 @@ namespace Windows.UI.Xaml.Controls
_imageFetchDisposable.Disposable = null;
if (imageSource != null && imageSource.UseTargetSize)
if (imageSource is not null && imageSource.UseTargetSize)
{
// If the ImageSource has the UseTargetSize set, the image
// must not be loaded until the first layout has been done.
......@@ -146,7 +146,7 @@ namespace Windows.UI.Xaml.Controls
}
}
if (imageSource.ResourceFailed)
if (imageSource?.ResourceFailed == true)
{
// Currently resource-based images are evaluated immediately
// in the constructor - so we have to raise ImageFailed late.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册