반응형
재생, 정지, 멈춤, 전체화면 이런 기능 하나도 없다.
단지 내 컴에 있는 동영상 선택해서 재생하는것만 해놨다.
부가적은 기능은 다 완성되면..
그럼 이만 소스를..
Page.xaml
<UserControl x:Class="VideoFileLoadPlay.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="600" Height="500">
<Canvas Background="Black">
<MediaElement Height="440" Width="600" x:Name="mediaEle"/>
<Button Height="25" Width="70" Content="Load Media" Canvas.Top="457" Canvas.Left="265" Cursor="Hand" Click="Button_Click"/>
</Canvas>
</UserControl>
<UserControl x:Class="VideoFileLoadPlay.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="600" Height="500">
<Canvas Background="Black">
<MediaElement Height="440" Width="600" x:Name="mediaEle"/>
<Button Height="25" Width="70" Content="Load Media" Canvas.Top="457" Canvas.Left="265" Cursor="Hand" Click="Button_Click"/>
</Canvas>
</UserControl>
Page.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
{
OpenFileDialog fileDialog = new OpenFileDialog();
fileDialog.Filter = "Media WMV|*.wmv";
if (fileDialog.ShowDialog() == true)
{
FileDialogFileInfo fdfi = fileDialog.SelectedFile;
mediaEle.SetSource(fdfi.OpenRead());
mediaEle.AutoPlay = true;
}
}
}
}
구성 : C#, Silverlight2-b2using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
namespace VideoFileLoadPlay
{
public partial class Page : UserControl
{
public Page()
{
InitializeComponent();
}
{
OpenFileDialog fileDialog = new OpenFileDialog();
fileDialog.Filter = "Media WMV|*.wmv";
if (fileDialog.ShowDialog() == true)
{
FileDialogFileInfo fdfi = fileDialog.SelectedFile;
mediaEle.SetSource(fdfi.OpenRead());
mediaEle.AutoPlay = true;
}
}
}
}
2008/09/02 - [Silveright] - [실버라이트] 동영상, 오디오 지원하는 포멧
반응형
'Dev > Silveright' 카테고리의 다른 글
[Sliveright] 페이지 링크걸기 (0) | 2008.10.06 |
---|---|
[실버라이트] 동적객체 생성하기 - Rectangle, Ellipse (0) | 2008.09.10 |
[실버라이트] 동영상, 오디오 지원하는 포멧 (0) | 2008.09.02 |
[실버라이트] .xap 파일 404 오류 (0) | 2008.08.26 |
[실버라이트] 동적 TextBlock 생성하기 (0) | 2008.08.21 |