-
networks like ants do in the process of floating above a small window to achieve
像网落蚂蚁那样在程序上方浮动的一个小窗口的实现-networks like ants do in the process of floating above a small window to achieve
- 2022-01-25 14:11:40下载
- 积分:1
-
一个取色板的例子
一个取色板的例子--An example of color picker
- 2022-04-21 10:05:37下载
- 积分:1
-
近有位读者来信指出:《在线杂志》第26期中有一篇文章:“再谈 CFileDialog 对话框的定制”,其例子程序有一个bug。如果多选时选中的文件过多,那么后面...
近有位读者来信指出:《在线杂志》第26期中有一篇文章:“再谈 CFileDialog 对话框的定制”,其例子程序有一个bug。如果多选时选中的文件过多,那么后面选中的文件将无效,也就是说即使也白选,点击“确定”后没有任何操作 。本文将提供解决此问题的办法,并说明问题的来由。代码性质] VC完整应用程序代码
[代码作者] Northtibet
[文件大小] 28K
[更新日期] 2005-9-28 17:17:00 -recent letter from a reader : "online magazine" 26 is a period of the article : "CFileDialog return to the Custom dialog box," its procedures example of a bug. If more elections in the selected documents excessive, then behind the selected document will be invalid, which means that even if elections are white, and click on "identified" no operation. This paper will provide a solution to this problem, and indicate the origins of the problem. Nature code] VC integrity of the application code [code writers] Northtibet [Size] 28K [updated] 2005-9-28 17:17:
- 2022-03-03 19:43:23下载
- 积分:1
-
这是我找到的一个小程序,关于图形处理的,希望对大家有所帮助!...
这是我找到的一个小程序,关于图形处理的,希望对大家有所帮助!-This is what I found a small program on the graphics processing, we want to help!
- 2022-02-20 07:04:35下载
- 积分:1
-
基于Qt的城市天气查询
点击查询按钮,从中国天气网获取当前天气的详细描述并提取显示在界面上。天气网api的返回格式为xml,需要输入城市代码,城市代码和名称写在配置文件weather.ini中,用户可更改查询其他城市。api的详细解析方法见 中国天气网API.mht文件。
- 2022-08-15 04:32:32下载
- 积分:1
-
34种图像特效源码,希望大家能用到,谢谢!
34种图像特效源码,希望大家能用到,谢谢!-34 pictures original
- 2022-05-21 23:59:32下载
- 积分:1
-
WPF 实现圆形进度条
项目中用到圆形进度条,首先就想到使用 ProgressBar 扩展一个,在博客园里找到 迷途的小榔头 给出的思路和部分代码,自己加以实现。在此感谢 迷途的小榔头! 进度小于60显示红色,大于60则显示绿色。效果如下:
- 2022-02-11 17:28:00下载
- 积分:1
-
当鼠标点在圆的外接四边形内圆的颜色将改变,并且实现了滚动条的功能...
当鼠标点在圆的外接四边形内圆的颜色将改变,并且实现了滚动条的功能-when the click of the mouse in the external Quadrilateral Yuan Yuan within the color will change, and the realization of the functional rolling
- 2022-03-18 04:53:22下载
- 积分: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
-
在标题栏上面使用位图的一个例子,简单实现了自定义标题栏。...
在标题栏上面使用位图的一个例子,简单实现了自定义标题栏。-Surface in the title bar the use of an example of a bitmap, a simple realization of a custom title bar.
- 2022-12-15 10:05:04下载
- 积分:1