Ejemplo n.º 1
0
        public void Pause()

        {
            TemStr = "";

            TemStr = TemStr.PadLeft(128, Convert.ToChar(" "));

            ilong = APIClass.mciSendString("pause media", TemStr, TemStr.Length, 0);

            mc.state = State.mPause;
        }
Ejemplo n.º 2
0
        //播放

        public void play()

        {
            TemStr = "";

            TemStr = TemStr.PadLeft(127, Convert.ToChar(" "));

            APIClass.mciSendString("play media", TemStr, TemStr.Length, 0);

            mc.state = State.mPlaying;
        }
Ejemplo n.º 3
0
        //停止

        public void StopT()

        {
            TemStr = "";

            TemStr = TemStr.PadLeft(128, Convert.ToChar(" "));

            ilong = APIClass.mciSendString("close media", TemStr, 128, 0);

            ilong = APIClass.mciSendString("close all", TemStr, 128, 0);

            mc.state = State.mStop;
        }