在PLAY.CS中
PUBLIC VOID PLAY()
{
    axWindowsMediaPlayer1.URL=@"D:\WAV\START.WAV";
}
axWindowsMediaPlayer1是FORM1.CS中的控件
我一编译 错误 非静态的字段、方法或属性“mediaplayer_0315.Form1.axWindowsMediaPlayer1”要求对象引用 如果 public static  AxWMPLib.AxWindowsMediaPlayer axWindowsMediaPlayer1;
加了STATIC
就出现如下错误:
无法使用实例引用访问静态成员“mediaplayer_0315.Form1.axWindowsMediaPlayer1”;改用类型名来限定它那么我应该怎么做?