登录
首页 » C# » 语音播报

语音播报

于 2022-01-12 发布
0 239
下载积分: 1 下载次数: 1

代码说明:

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • asp.net 笔记本电脑在线销售系统源码(含数据库)
    该系统为一笔记本电脑在线销售系统,功能简单后台主要功能有:  订单管理: 未处理的订单  已处理的订单  今天的新订单   商品管理: 商品分类管理  添加新商品  编辑商品信息   系统管理: 商品促销信息  网站新闻管理  商品评论管理  客户反馈管理 统计调查管理   用户管理: 客户档案管理  更改管理员密码 
    2020-03-07下载
    积分:1
  • winform 订单管理系统源码下载(三层结构)
    winform 订单管理系统源码下载(三层结构)
    2016-11-18下载
    积分:1
  • AForge.NET Framework-2.2.5源码及例子
    AForge.NET Framework-2.2.5源码及例子
    2016-05-13下载
    积分:1
  • 在 web网站、winform、控制台使用log4net实例源码下载
    在 web网站、winform、控制台使用log4net实例源码下载
    2014-07-22下载
    积分:1
  • C# 检查本地硬盘序列号
    C# 利用diskid32.exe 检查本地硬盘序列号 CPU 以及MAC地址
    2018-02-11下载
    积分:1
  • AutoCAD .net 二次开发源码 下载
    用VS.NET2005开发ObjectARX程序 调试方法1.自动启动AutoCAD:选择工程根目录(解决方案下面的),鼠标右键-->属性-->工程属性对话框-->调试标签-->启动操作:启动外部程序-->浏览选择AutoCAD的安装目录,选择acad.exe。2.手动加载类库:(1) 按F5;(2) 自动启动AutoCAD,一路继续。(3) 在CAD命令行手动输入"netload",浏览到自己的动态连接库文件。3.自动加载类库:(1) 工程属性对话框-->调试标签-->启动选项-->命令行参数中输入:/nologo /b "....start.scr"让CAD自动在命令执行工程目录里的start.scr文件。(2) 然后就是在工程目录的根目录创建一个文本文件,名字取为“start.scr”,并在此文件中输入如下文本:netload "....indebuglubanren_2008.dll" (3) 按F5。4.单纯的数据库交互窗体操作,使用Windows 应用程序开发模式调试会更方便些:(1) 工程属性对话框-->应用程序标签-->程序集名称:Windows 应用程序。(2) 调试标签-->启动操作:启动项目。(3) 按F5。
    2013-08-30下载
    积分:1
  • 通过程序自动填充并提交ASP.NET表单(Form)
    AutoPostWithCookies
    2020-11-27下载
    积分:1
  • c# winform 自定义控件类LayeredSkin.dll
    自定义开关按钮,滚动相册,进度条,窗体控件/******************************************************************** * * * * 使本项目源码或本项目生成的DLL前请仔细阅读以下协议内容,如果你同意以下协议才能使用本项目所有的功能, * * 否则如果你违反了以下协议,有可能陷入法律纠纷和赔偿,作者保留追究法律责任的权利。 * * * * 1、你可以在开发的软件产品中使用和修改本项目的源码和DLL,但是请保留所有相关的版权信息。 * * 2、不能将本项目源码与作者的其他项目整合作为一个单独的软件售卖给他人使用。 * * 3、不能传播本项目的源码和DLL,包括上传到网上、拷贝给他人等方式。 * * 4、以上协议暂时定制,由于还不完善,作者保留以后修改协议的权利。 * * * * Copyright (C) 2013-2014 LayeredSkin Corporation All rights reserved. * * 作者: 小红帽  QQ:761716178 * * 请保留以上版权信息,否则作者将保留追究法律责任。 * * * * 创建时间:2014-04-13 * * 说明:QQ.cs * *********************************************************************/using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using LayeredSkin.Forms;namespace test{    public partial class QQ : LayeredForm    {        public QQ()        {            InitializeComponent();        }        private void layeredButton1_Click(object sender, EventArgs e)        {            this.WindowState = FormWindowState.Minimized;        }        private void QQ_Load(object sender, EventArgs e)        {            this.Animation.Effect = new LayeredSkin.Animations.GradualCurtainEffect() { ChangeHeight = 25 };            yezi = new Bitmap(90, 80);//先把叶子画在稍微大一点的画布上,这样叶子旋转的时候才不会被裁掉一部分            using (Graphics g = Graphics.FromImage(yezi))            {                g.DrawImage(Image.FromFile("Images\yezi3.png"), 10, 0);            }            timer1.Start();        }        private void layeredButton2_Click(object sender, EventArgs e)        {            this.Animation.Effect = new LayeredSkin.Animations.GradualCurtainEffect();            this.Animation.Asc = true;            this.Close();        }        private void FormMoveMouseDown(object sender, MouseEventArgs e)        {            LayeredSkin.NativeMethods.MouseToMoveControl(this.Handle);        }        Image Cloud = Image.FromFile("Images\cloud.png");        float cloudX = 0;        Image yezi;        float angle = 10;        bool RotationDirection = true;//是否为顺时针        protected override void OnLayeredPaint(PaintEventArgs e)        {            Graphics g = e.Graphics;            if (cloudX > this.Width - Cloud.Width)            {//云的飘动                cloudX = 0;            }            else            {                cloudX = 0.5f;            }            g.DrawImage(Cloud, cloudX, 0);//把云绘制上去            if (angle > 10)            {//控制旋转方向                RotationDirection = false;            }            if (angle < -10)            {                RotationDirection = true;            }            if (RotationDirection)            {                angle = 1;            }            else            {                angle -= 1;            }            using (Image temp = LayeredSkin.ImageEffects.RotateImage(yezi, angle, new Point(25, 3)))            {                g.DrawImage(temp, 140, 70);//绘制叶子            }            base.OnLayeredPaint(e);        }        private void timer1_Tick(object sender, EventArgs e)        {            LayeredPaint();            GC.Collect();        }        public bool isShow = false;        bool isFirst = true;        private void layeredButton3_Click(object sender, EventArgs e)        {            isShow = false;            if (isFirst)            {                this.Animation.Effect = new LayeredSkin.Animations.ThreeDTurn();                this.Animation.AnimationEnd = Animation_AnimationEnd;            }            isFirst = false;            this.Animation.Asc = false;            this.Animation.Start();        }        //QQConfig config;        void Animation_AnimationEnd(object sender, LayeredSkin.Animations.AnimationEventArgs e)        {            if (!isShow)            {                this.Hide();                QQConfig config = new QQConfig(this);                config.Location = this.Location;                config.Show();            }        }    }}
    2020-12-11下载
    积分:1
  • C#批量部署站点(包含数据库部署以及iis建站/配置站点)源码下载
    数据库的部署 站点的建立以及配置
    2015-05-07下载
    积分:1
  • C# 类似vs(Visual Studio) 属性设置效果 winform示例源码下载
    C# 类似vs(Visual Studio) 属性设置效果 winform示例源码下载
    2013-10-02下载
    积分:1
  • 696516资源总数
  • 106442会员总数
  • 11今日下载