-
City to the National Defense University were some people in the distance when th...
中国防大学要城区人有的人的要在圾遥和一枯夸大辰琦在霜在历遥在劝要不得一经在一塌胡涂-City to the National Defense University were some people in the distance when thousands of blight and an exaggerated e-kay cream in the calendar distance advised by an undesirable in a mess
- 2022-02-14 01:22:11下载
- 积分:1
-
模拟任意设备串口通讯程序
模拟任意设备串口通讯程序。DATA.TXT文件里可以任意写入发送的命令(分号结束)和返回的数据(句号结束),因串口接收程序无法区分设备类型,如两种设备命令相同,则无法判断该返回哪种数据。
建议DATA文件只有一种设备的命令数据。有LRC和CRC校验。
- 2022-03-05 17:12:39下载
- 积分:1
-
有大量的VC编程实例的源代码,内容涉及极其宽泛,其中有目录,如第六章:实例095...
有大量的VC编程实例的源代码,内容涉及极其宽泛,其中有目录,如第六章:实例095-创建线性梯度,实例096-多种风格的端点,097-图形容器的应用,实例098-使用颜色矩阵设置图像中的 Alpha 值.....等等,不一一说明.-a large number of examples of the VC program source code, which relates to an extremely broad, including directory, like Chapter 6 : Case 095- create linear gradient, examples of 096-a variety of styles endpoint, 097- graphics packaging applications, examples of 098- color matrix set up to use the image Alpha value ..... and so on, not setting them out.
- 2022-01-30 14:14:37下载
- 积分:1
-
支持 1。简体到简繁体,2。简体到繁体
3。繁体到繁简体 4。繁体到简体
的文件和句子的转换。
做多语言版本够了,只需提供一个版本的中文,可以提供包...
支持 1。简体到简繁体,2。简体到繁体
3。繁体到繁简体 4。繁体到简体
的文件和句子的转换。
做多语言版本够了,只需提供一个版本的中文,可以提供包括原版本在内的4个版本的字符。-1. Traditional to Simplified and Traditional, 2. Simplified to Traditional 3. Traditional to either traditional and simplified 4. Traditional to Simplified documents and sentence conversion. To do enough of multi-language version, simply to provide a version of the Chinese, including the original version can provide, including four versions of the characters.
- 2023-01-22 15:05:03下载
- 积分:1
-
Interface switch controls the application of alarm button, in the hope that usef...
界面切换,报警按钮控件的应用,希望对大家有用-Interface switch controls the application of alarm button, in the hope that useful
- 2022-08-25 10:05:34下载
- 积分:1
-
贪吃蛇VS2012
资源描述适合初学者的简单游戏,利用Visual Studio2012编程,完整版 可直接运行使用,代码简单易懂
- 2022-05-04 22:56:32下载
- 积分:1
-
这个界面里有托盘程序,还有关于对话框动态打开和隐藏的程序,很适合初学者参考....
这个界面里有托盘程序,还有关于对话框动态打开和隐藏的程序,很适合初学者参考.-the pallet interface there are procedures, but also on dynamic dialog open and hidden procedures, reference is very suitable for beginners.
- 2022-07-24 06:29:57下载
- 积分:1
-
Browse for a Folder using SHBrowseForFolder API function with a callback functio...
Browse for a Folder using SHBrowseForFolder API function with a callback
function BrowseCallbackProc.
This Extends the functionality that was given in the
MSDN Knowledge Base article Q179497 "HOWTO: Select a Directory
Without the Common Dialog Control".-Browse for a Folder using SHBrowseForFolder API function with a callback function BrowseCallbackProc. This Extends the functionality that was given in the MSDN Knowledge Base article Q179497 " HOWTO: Select a Directory Without the Common Dialog Control" .
- 2022-04-21 06:12:59下载
- 积分:1
-
animation vibration source of the dialog box
动画震动对话框的源码-animation vibration source of the dialog box
- 2022-01-22 12:34:03下载
- 积分: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