0

I m developing media player in c# and I m using windows media player component for that..

This is my code

private void songList_SelectedIndexChanged(object sender, EventArgs e)
{
   axWindowsMediaPlayer1.URL = paths[songList.SelectedIndex];
}

Can anyone tell me the supported file formats for this component?
The version information property of the component is '12.0.7600.16385'

vidhi
  • 411
  • 1
  • 6
  • 19

1 Answers1

2

See this microsoft website for the supported file formates. All the file formats are listed and the compatible windows media player versions.

faceman
  • 1,318
  • 11
  • 20