Есть очень простой плеер, умеет только играть музыку и всё, код прилагаю
using System;
using System.Runtime.InteropServices;
using System.Text;
namespace mooPlayer
{
/// <summary>
/// Description of Player.
/// </summary>
public class Player
{
//To import the dll winmn.dll which allows to play mp3 files
//Импорт winmn.dll для проигрывания mp3
[DllImport("winmm.dll")]
private static extern long mciSendString(string lpstrCommand, StringBuilder lpstrReturnString, int uReturnLength, int hwndCallback);
public void Open(string file)
{
string command = "open \"" + file + "\" type MPEGVideo alias Music";
mciSendString(command, null, 0, 0);
}
public void Play()
{
string command = "play Music";
mciSendString(command, null, 0, 0);
}
public void Stop()
{
string command = "stop Music";
mciSendString(command, null, 0, 0);
command = "close Music";
mciSendString(command, null, 0, 0);
}
}
}
Как сделать так, чтобы отображало только название файла без полного пути?
Да, глупый вопрос, знаю