[C#] 21일차 - 152. WMP 컨트롤을 이용한 동영상 플레이어C#/C#200제2021. 2. 25. 22:32
Table of Contents
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace A152_WMP
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
WMP.uiMode = "full";
WMP.stretchToFit = true;
btnFile.Location = new Point(
ClientSize.Width - btnFile.Size.Width - 5,
ClientSize.Height - btnFile.Size.Height - 5
);
}
private void btnFile_Click(object sender, EventArgs e)
{
OpenFileDialog ofd = new OpenFileDialog();
// 파일선택 버튼을 누르면 showdialog로 파일을 선택할수있게 한다.
if(ofd.ShowDialog() == DialogResult.OK)
{
WMP.URL = ofd.FileName;
}
}
private void Form1_Resize(object sender, EventArgs e)
{
WMP.Size = this.ClientSize;
btnFile.Location = new Point(
ClientSize.Width - btnFile.Size.Width - 5,
ClientSize.Height - btnFile.Size.Height - 5
);
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 21일차 - 154. 메뉴와 대화상자(폰트, 컬러) (0) | 2021.02.25 |
---|---|
[C#] 21일차 - 153. OpenFileDialog를 이용해서 메모장에서 파일열기 (0) | 2021.02.25 |
[C#] 21일차 - 151. WindowsMediaPlayer를 이용한 소리나는 알람시계 (0) | 2021.02.25 |
[C#] 21일차 - 150. TabControl을 사용한 디지털 알람시계 (0) | 2021.02.25 |
[C#] 20일차 - 149. DateTimePicker를 이용한 날짜 계산기 (0) | 2021.02.23 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!