我想將視頻顯示為網(wǎng)格的背景?;谶@篇文章,我創(chuàng)建了這個(gè)網(wǎng)格代碼:<Grid> <Grid.Background> <VisualBrush> <VisualBrush.Visual> <StackPanel Background="White"> <Image Source="/WPF.Resources;component/Videos/background.wmv" Opacity="0.3"></Image> </StackPanel> </VisualBrush.Visual> </VisualBrush> </Grid.Background> <Grid.ColumnDefinitions> <ColumnDefinition Width="1*" /> <ColumnDefinition Width="491" /> <ColumnDefinition Width="491" /> <ColumnDefinition Width="1*" /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="1*" /> <RowDefinition Height="250" /> <RowDefinition Height="250" /> <RowDefinition Height="105" /> <RowDefinition Height="1*" /> </Grid.RowDefinitions></Grid>但是我收到此錯(cuò)誤:Blend 不支持這種文件格式。D:\WPF\Resources\Videos\background.wmvWPF 支持什么類型的文件作為視頻背景?我嘗試播放視頻,我可以播放它,所以它是一種有效的文件格式。
2 回答

大話西游666
TA貢獻(xiàn)1817條經(jīng)驗(yàn) 獲得超14個(gè)贊
而不是Image使用MediaElement.
<VisualBrush.Visual>
<StackPanel Background="White">
<MediaElement Source="/WPF.Resources;component/Videos/background.wmv" Opacity="0.3"></MediaElement>
</StackPanel>
</VisualBrush.Visual>
轉(zhuǎn)到background.wmv文件的屬性,然后Copy to Output Directory選擇Copy always. 這意味著視頻將被復(fù)制到 bin 文件夾,并且 wpf 應(yīng)用程序?qū)⒛軌驈哪抢镌L問該文件并將其顯示出來。
- 2 回答
- 0 關(guān)注
- 312 瀏覽
添加回答
舉報(bào)
0/150
提交
取消