Silverlight:动态读取图片或者视频

下面这个小例子演示了如何在Silverlight(或者WPF)中动态读取图片或者视频

 

页面部分

<UserControl x:Class="SilverlightApplication1.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480">
    <StackPanel Name="pl" Orientation="Horizontal" >
        <Image Width="100" Height="100" Name="pic">
   
   Image>
        <Button Name="bt"  Width="100" Height="100" Click="Button_Click">
    
    Button>
        <MediaElement Name="video" Width="300" Height="300">
     
     MediaElement>
        <Button Name="bt2" Width="100" Height="100" Click="Button_Click_1">
      
      Button>
     
       StackPanel>  
        UserControl> 
 
代码部分
using System.Windows;
using System.Windows.Controls;
using System.IO;
using System.Windows.Media.Imaging;


namespace SilverlightApplication1
{
    public partial class MainPage : UserControl
    {
        public MainPage()
        {
            InitializeComponent();

        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            OpenFileDialog ofd = new OpenFileDialog();
            ofd.Filter = "JPG File|*.JPG";
            if ((bool)ofd.ShowDialog())
            {
                FileStream fs = ofd.File.OpenRead();
                BitmapImage image = new BitmapImage();
                image.SetSource(fs);
                pic.Source = image;
            }
        }

        private void Button_Click_1(object sender, RoutedEventArgs e)
        {
            OpenFileDialog ofd = new OpenFileDialog();
            ofd.Filter = "Video File|*.wmv";
            if ((bool)ofd.ShowDialog())
            {
                video.SetSource(ofd.File.OpenRead());
            }
        }
    }
}
效果图

image

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值