此脚本设置一个包含 5 个项目的全景控件,然后在第二个全景项目的 MediaElement 内加载一个视频。
如果我将其减少到 2 个项目,则没有视频显示(媒体元素是“不可见的”),但您仍然可以听到音频 - 即类似于:
panorama = Panorama.new
panorama.title = "Video panorama"
Host.content_holder.children.add panorama
for i in 1..2 # if this is >2, then the video shows
panorama_item = PanoramaItem.new
panorama_item.header = "Child " << i.to_s
panorama.items.add panorama_item
if i == 2
panorama_item.orientation = Orientation.horizontal
media_element = MediaElement.new
media_element.source = Uri.new("http://files.ch9.ms/ch9/f2c3/b59b6efb-3c70-4bc2-b3ff-9e650007f2c3/wp7ces_ch9.wmv")
panorama_item.content = media_element
else
text_block = TextBlock.new
text_block.text = "Hello world"
panorama_item.content = text_block
end
end
我想这与最初的全景秀的动画和时间有关——但我无法解决这个问题。
这个问题在 C#/XAML 中似乎是一样的,所以它不是脚本问题。
有没有人知道在哪里看?