-
A multiline extended tooltip control
是我在网上找的,版权归原作者所有。...
A multiline extended tooltip control
是我在网上找的,版权归原作者所有。-A multiline extended tooltip control is what I find online, and belongs to original author.
- 2022-07-14 12:13:19下载
- 积分:1
-
粒子群优化算法的代码在 C
它是用于粒子在哪里 4 尺寸变量的粒子群优化算法 (PSO) 的 C 代码。
- 2022-01-26 03:17:39下载
- 积分:1
-
VB皮肤代码,内置了一些皮肤!和一个皮肤编辑器!
VB皮肤代码,内置了一些皮肤!和一个皮肤编辑器!-Skin VB code
- 2022-08-09 21:42:05下载
- 积分:1
-
achieve the arbitrary division of the window, using the static segmentation appr...
实现窗口的任意分割,使用静态分割的方法切分窗口,是通过使用CSplitterWnd类来完成的-achieve the arbitrary division of the window, using the static segmentation approach segmentation window, through the use of CSplitterWnd class completed
- 2022-09-16 14:40:03下载
- 积分:1
-
vc气泡状提示编写示例,当鼠标指针放在输入框时,显示提示气泡...
vc气泡状提示编写示例,当鼠标指针放在输入框时,显示提示气泡-vc prompted the preparation of bubble-shaped sample, when the mouse pointer on the input box, the display prompts the bubble
- 2022-03-16 02:26:05下载
- 积分:1
-
备表头拖拽、排序、添加、修改、删除、部分列固定,固定表头,表脚,分页集成,模板列,下拉框列,编辑列,删除列,选择列(用模板列实现)等功能的asp.net cus
备表头拖拽、排序、添加、修改、删除、部分列固定,固定表头,表脚,分页集成,模板列,下拉框列,编辑列,删除列,选择列(用模板列实现)等功能的asp.net customer datagrid,。- Prepares table to tow entrains, the arrangement, the increase,
the revision, the deletion, passes in review fixedly, the fixed table
head, shows the foot, divides the page integration, the template row,
gets down pulls the frame row, the edition row, deletes the row, the
choice row (realizes and so on function asp.net customer datagrid with
template row).
- 2023-08-05 01:05:05下载
- 积分: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
-
一个非常好用的列表框,可以根据你的需要添加具体项
一个非常好用的列表框,可以根据你的需要添加具体项-A very useful list box, you can add the specific items required
- 2022-05-07 04:26:02下载
- 积分:1
-
一个好的程序往往有着不错的界面。作为程序员,也非常在意自己的成果是否精美。在图形操作系统中,最重要的是截面元素是窗体。本程序实现变形窗体,椭圆形的。...
一个好的程序往往有着不错的界面。作为程序员,也非常在意自己的成果是否精美。在图形操作系统中,最重要的是截面元素是窗体。本程序实现变形窗体,椭圆形的。-a good procedure is always a good interface. As programmers, but also very concerned about the results of their exquisite. The graphics operating system, the most important element is the section of the form. The program deformation forms, oval-shaped.
- 2022-05-22 10:47:25下载
- 积分:1
-
采用vb编程,实现在Timer控件中调用RDS技术把采集到的发动机振动信号数据传送到远程的服务器数据库中...
采用vb编程,实现在Timer控件中调用RDS技术把采集到的发动机振动信号数据传送到远程的服务器数据库中-used vb programming, to achieve the Timer control Calling RDS technology to the acquisition of the engine vibration signal data to a remote database server
- 2022-02-03 21:43:20下载
- 积分:1