Tampilan Form:
Koding Program:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace mp3_Player
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
string[] files, paths;
private void button1_Click(object sender, EventArgs e)
{
if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
files = openFileDialog1.SafeFileNames;
paths = openFileDialog1.FileNames;
for (int i = 0; i < files.Length; i++)
{
listBox1.Items.Add(files[i]);
}
}
}
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
axWindowsMediaPlayer1.URL = paths[listBox1.SelectedIndex];
}
private void Form1_Load(object sender, EventArgs e)
{
}
}
}
Out Put Tampilan :
Play.
Open.
0 komentar:
Post a Comment
Note: only a member of this blog may post a comment.