uwp c# Zoom Image without scrollview
uwp c# Zoom Image without scrollview
我测试了scenario 3 of the BasicMediaCasting sample。我将我的图片分享给:
await connection.RequestStartCastingAsync(img.GetAsCastingSource());
现在我的问题是:
我可以与 MiraCast 共享 scrollView 吗?
或者我可以在没有滚动视图的情况下缩放图像吗?
很遗憾,没有,只有 MediaPlayer
、Image
和 MediaElement
具有所需的 GetAsCastingSource
方法,因此您无法从 ScrollView
创建转换源.我知道你想让用户在投射图片时缩放图片,但我认为这是不可能的,除非目标设备本身具有此功能。
我测试了scenario 3 of the BasicMediaCasting sample。我将我的图片分享给:
await connection.RequestStartCastingAsync(img.GetAsCastingSource());
现在我的问题是:
我可以与 MiraCast 共享 scrollView 吗?
或者我可以在没有滚动视图的情况下缩放图像吗?
很遗憾,没有,只有 MediaPlayer
、Image
和 MediaElement
具有所需的 GetAsCastingSource
方法,因此您无法从 ScrollView
创建转换源.我知道你想让用户在投射图片时缩放图片,但我认为这是不可能的,除非目标设备本身具有此功能。