Click here to Skip to main content
15,886,676 members
Articles / Programming Languages / C#

MusicDrawer: A Simple Music player using WMP SDK

Rate me:
Please Sign up or sign in to vote.
4.95/5 (17 votes)
23 Mar 2013CPOL6 min read 41.4K   6.9K   26  
A Simple Music Player using WMP SDK
using System;
using System.Collections.Generic;
using System.Text;

namespace MusicDrawer.Core
{
    class Song
    {
        string path_ = null;
        string name_ = null;
        Guid id_;

        public Song(string path)
        {
            path_ = path;
            name_ = GetNameFromPath(path_);
            id_ = Guid.NewGuid();
        }

        //This will convert the path to filename(windows)
        string GetNameFromPath(string path)
        {
            string name = "";
            string[] split = path.Split('\\');
            string nameExt = split[split.Length - 1];
            split = nameExt.Split('.');
            for (int i = 0; i < split.Length - 1; ++i)
            {
                name += split[i];
            }

            return name;
        }

        //If someone need a path (perhaps the engine)
        public string PATH
        {
            get
            {
                return path_;
            }
        }

        //If someone needs a name (perhaps the UI)
        public string NAME
        {
            get
            {
                return name_;
            }
        }

        //If someone needs the unique ID of song
        public Guid ID
        {
            get
            {
                return id_;
            }
        }  
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
India India

I Started my Programming career with C++. Later got a chance to develop Windows Form applications using C#. Currently using C#, ASP.NET & ASP.NET MVC to create Information Systems, e-commerce/e-governance Portals and Data driven websites.

My interests involves Programming, Website development and Learning/Teaching subjects related to Computer Science/Information Systems. IMO, C# is the best programming language and I love working with C# and other Microsoft Technologies.

  • Microsoft Certified Technology Specialist (MCTS): Web Applications Development with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Accessing Data with Microsoft .NET Framework 4
  • Microsoft Certified Technology Specialist (MCTS): Windows Communication Foundation Development with Microsoft .NET Framework 4

If you like my articles, please visit my website for more: www.rahulrajatsingh.com[^]

  • Microsoft MVP 2015

Comments and Discussions