资源简介
这是一款自用的小程序,定时自动播放音乐。界面如下,很简洁。能自动跳过周六和周天。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Timers;
using System.Windows.Forms;
using WMPLib;
namespace AutoPlay
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//设置定时时间
public int SetTime(string str)
{
int tt = 0;
bool b = int.TryParse(str out tt);
if (str != ““)
{
if (b == true)
{
if (tt >= 0 && tt <= 9)
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 184 2016-07-14 13:26 App.config
文件 6996 2016-07-14 13:53 AutoPlay.csproj
文件 478 2016-07-14 13:53 AutoPlay.csproj.user
文件 2508 2016-08-12 08:38 AutoPlay.sln
文件 3701 2016-07-13 13:58 Form1.cs
文件 8384 2016-07-13 13:05 Form1.Designer.cs
文件 6711 2016-07-13 13:05 Form1.resx
文件 520 2016-06-03 14:51 Program.cs
文件 4083717 2014-04-09 10:33 bin\Debug\1.mp3
文件 53760 2016-07-13 13:58 bin\Debug\AxInterop.WMPLib.dll
文件 331264 2016-07-13 13:58 bin\Debug\Interop.WMPLib.dll
文件 13312 2016-07-14 13:13 bin\Debug\自动播放.exe
文件 187 2016-06-03 08:42 bin\Debug\自动播放.exe.config
文件 26112 2016-07-14 13:13 bin\Debug\自动播放.pdb
文件 24224 2016-07-14 13:12 bin\Debug\自动播放.vshost.exe
文件 187 2016-06-03 08:42 bin\Debug\自动播放.vshost.exe.config
文件 490 2010-03-17 22:39 bin\Debug\自动播放.vshost.exe.manifest
文件 53760 2016-07-14 13:16 bin\Release\AxInterop.WMPLib.dll
文件 331264 2016-07-14 13:16 bin\Release\Interop.WMPLib.dll
文件 12800 2016-07-14 13:16 bin\Release\自动播放.exe
文件 184 2016-07-14 13:26 bin\Release\自动播放.exe.config
文件 22016 2016-07-14 13:16 bin\Release\自动播放.pdb
文件 24216 2016-07-14 13:26 bin\Release\自动播放.vshost.exe
文件 184 2016-07-14 13:26 bin\Release\自动播放.vshost.exe.config
文件 490 2010-03-17 22:39 bin\Release\自动播放.vshost.exe.manifest
文件 4083717 2014-04-09 10:33 bin\x86\Release\1.mp3
文件 53760 2016-07-14 13:54 bin\x86\Release\AxInterop.WMPLib.dll
文件 331264 2016-07-14 13:54 bin\x86\Release\Interop.WMPLib.dll
文件 12800 2016-07-14 13:54 bin\x86\Release\自动播放.exe
文件 184 2016-07-14 13:26 bin\x86\Release\自动播放.exe.config
............此处省略68个文件信息
- 上一篇:c#写的暴风影音播放器
- 下一篇:vlc播放视频流
评论
共有 条评论