-
DCT使用DCT
DCT使用DCT
- 2023-01-11 15:10:04下载
- 积分:1
-
用于Winamp2.0插件的光谱分析器源代码,供大家交流
用于Winamp2.0插件的光谱分析器源代码,供大家交流-Spectral Analysis for Winamp2.0 browser plug-ins source code for U.S. exchange
- 2022-07-24 10:21:41下载
- 积分:1
-
最新精美后台管理系统模版html源文件
最新精美后台管理系统模版html源文件你是否觉得你的cms后台不够漂亮,你想你的站的后台和别人不一样的风格,更高端大气上档次,那就来吧,这一套足够让你的cms后台焕然一新了,不过先说明一下,这里给出的只是html模板文件,具体的数据设置还得根据你自己的后台来,想换你还得要有一定的基础哦,新手就免了吧。越来越多的后台向傻瓜操作的方向发展,但实现这个的重要途径之一就是把后台简化,清晰明了,让人一眼就能看到想要的东西。操作流畅简便,反应速度快。在这里站长也是吐血贡献啊,这一套是站长收藏多年一直都是自己用的,现在提供给大家下载,最不希望的是有些人把东西下载下来直接放淘宝上卖一块钱一个,这也就算了我没有意见,但你总得改动改动吧,上面还有本站的联系方式什么的得改了吧,你是拿到钱了,可麻烦留给站长了,希望大家多多注意。在些站长也非常感谢大家的支持,希望我们会琥来越好。
- 2022-02-22 02:52:36下载
- 积分:1
-
用vc开发的app的一个控件包,只支持 VC5,VC6,VC7,不支持VB,Delphi,C#,BCB等其它开发工具...
用vc开发的app的一个控件包,只支持 VC5,VC6,VC7,不支持VB,Delphi,C#,BCB等其它开发工具-Vc developed app with a control package, only supports VC5, VC6, VC7, do not support the VB, Delphi, C#, BCB, and other development tools
- 2022-01-31 15:38:03下载
- 积分:1
-
my classmates do a c programming language, but he has done for the DOS version i...
我同学做的一个c语言编程,不过他做的是DOS版的,希望多多指教,同时希望有志同道合的朋友一起分享-my classmates do a c programming language, but he has done for the DOS version is the hope that the exhibitions, with the hope that a like-minded friends to share
- 2022-07-16 23:26:25下载
- 积分:1
-
from memory structure and create dialog, to prevent the application's resour...
从内存中构造和创建对话框, 防止应用程序的资源文件被串改-from memory structure and create dialog, to prevent the application"s resource file is altered
- 2022-08-14 10:08:25下载
- 积分:1
-
VB+MO程序,常用功能都有,对初学者有很好的参考价值
VB+MO程序,常用功能都有,对初学者有很好的参考价值-VB+ MO procedures, common function, for beginners have a very good reference value
- 2023-01-02 10:15:04下载
- 积分:1
-
本系统可以让学生自由选题,有比较华丽的界面
本系统可以让学生自由选题,有比较华丽的界面-the system can allow students to choose research subjects, which are quite gorgeous interface
- 2022-02-03 16:00:49下载
- 积分:1
-
This example illustrates in detail some of the basic controls in MFC to use
本例详细说明了MFC中要使用的一些基本控件
- 2022-03-24 17:55:41下载
- 积分:1
-
基于c#的时钟
资源描述本源程序是基于C#的时钟设计,能为初学者提供参考价值,为初学者提供基本的编写代码思路,
namespace Clock
{
public partial class MainForm : Form
{
private PointF center;
private float r;
private Pen hourPen;
private Pen minutePen;
private Pen secondPen;
private Thread timeThread;
public MainForm()
{
InitializeComponent();
ShowInTaskbar = false;//不在任务栏中显示
SetStyle(ControlStyles.DoubleBuffer, true);
SetStyle(ControlStyles.UserPaint,true);
SetStyle(ControlStyles.AllPaintingInWmPaint,true);
center = new PointF(ClientSize.Width/ 2.0f, ClientSize.Height/ 2.0f);
r = Math.Min(ClientSize.Width / 2.0f, ClientSize.Height / 2.0f);
hourPen = new Pen(Color.Black, 2.5f);
minutePen = new Pen(Color.Black, 1.5f);
secondPen = new Pen(Color.Black, 0.5f);
timeThread=new Thread(new ThreadStart(DrawTime));
timeThread.Start();
}
protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
g.Clear(BackColor);
//g.SmoothingMode =
- 2022-01-26 05:22:52下载
- 积分:1