当前位置:   article > 正文

【C】用C语言做一个很简单的音乐播放器_c语言音乐播放器

c语言音乐播放器

要求:实现音乐的播放、暂停、继续、关闭,只有这四个功能,当鼠标放在按钮上的时候按钮会变颜色

需要的知识储备:
      1.C语言基本语法
      2.数据结构的结构体
      3.string.h 内置函数的使用
      4.mmsystem.h 内置函数的使用
      5.graphics.h 内置函数的使用

先上代码:

#define _CRT_SECURE_NO_WARNINGS

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<graphics.h>
#include<conio.h>
#include<mmsystem.h>
#pragma comment(lib,"winmm.lib")

//设置一个按钮的结构体,后面会用到
typedef struct Button
{
   
	int x;
	int y;
	int xx;
	int yy;
	COLORREF color;
	char* buttonStr;
}BTN, * LPBTN;

//1.创建按钮的属性
LPBTN creatButton(int x, int y, int xx, int yy, COLORREF color, char* buttonStr)
{
   
	LPBTN button = (LPBTN)malloc(sizeof(BTN));
	button->x = x;
	button->y = y;
	button->xx = xx;
	button->yy = yy;
	button->color = color;
	button->buttonStr = (char *)malloc(strlen(buttonStr) 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/1006949
推荐阅读
相关标签
  

闽ICP备14008679号