MediaElement
なんらかの理由で、で使用したときに表示されませんControlTemplate
。
snoopをインストールしましたが、ActualWidth
とActualHeight
は常にゼロであると判断しました。ランダムに配置されたメインウィンドウに同じメディア要素を配置すると、表示されます。
それで、なぜそれは常にゼロになるのでしょうか?これは私を殺している!
これが私のxamlですControlTemplate
:
<MediaElement x:Name="frostElement"
HorizontalAlignment="Stretch"
VerticalAlignment="Stretch"
Stretch="Fill"
LoadedBehavior="Play"
Width="{TemplateBinding Width}"
Height="{TemplateBinding Height}"
Margin="0,0,0,26.083"
Source="../Images/ice.mpg"/>
また、幅と高さを手動で設定しても表示されません。