-
11. How listbox automatic paper loading disk list. Rar
11.如何在列表框中自动装载磁盘文件列表.rar-11. How listbox automatic paper loading disk list. Rar
- 2022-09-23 08:15:02下载
- 积分:1
-
流程设计程序
资源描述
支持在视图上任意编辑图元,设置图元的属性等。可编辑的图元包括文字、图片、多边形等类似visio软件,但可以定义每个图元自己的属性。图元之间还可以结合使用。
// FlowcharterView.h : interface of the CFlowcharterView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_FLOWCHARTERVIEW_H__50CDD008_9534_443D_8161_E058963BE0B8__INCLUDED_)
#define AFX_FLOWCHARTERVIEW_H__50CDD008_9534_443D_8161_E058963BE0B8__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "FlowchartEditor/FlowchartEditor.h"
class CFlowcharterView : public CView
{
protected: // create from serialization only
CFlowcharterView();
DECLARE_DYNCREATE(CFlowcharterView)
// Attributes
public:
CFlowcharterDoc* GetDocument();
// Operations
public:
- 2022-01-22 07:18:46下载
- 积分:1
-
Manila 关于重力感应部分的lua源码
Manila 关于重力感应部分的lua源码-Touch Flo 3D G-Sensor lua code
- 2023-08-24 00:40:03下载
- 积分:1
-
简单的图片旋转
使用WTL工程,在简单的对话框上 用GDI+实现简单的图片旋转。在界面开发的过程中 经常会用到图片旋转,比如沿着中心点进行旋转90 180度等等,原理很简单,
- 2022-04-08 23:09:00下载
- 积分:1
-
自定义颜色的按钮控件、静态框控件、编辑框及复选框
自定义颜色的按钮控件、静态框控件、编辑框及复选框- Controls, the static frame from the definition color button
controls, edits the frame and the reelection frame
- 2022-01-25 23:49:37下载
- 积分:1
-
Forms and graphs, create forms and graphs in visual basic
Forms and graphs, create forms and graphs in visual basic
- 2022-07-28 12:14:58下载
- 积分:1
-
TabStrip 页,仿VS.net 2003界面的tabstrip,源码,并带有示例,很好用
TabStrip 页,仿VS.net 2003界面的tabstrip,源码,并带有示例,很好用-TabStrip pages, fake VS.net 2003 tabstrip interface, the source, and with examples, good use
- 2022-10-01 05:05:03下载
- 积分:1
-
用vb实现向菜单中添加图标,一个经典例子极具参考价值
用vb实现向菜单中添加图标,一个经典例子极具参考价值-with vb achieve added to the menu icon, a classic example of great reference value
- 2022-02-01 11:28:52下载
- 积分:1
-
Themselves on the basis of a swing
自己根据网上荡的一个程序进行的改编,我一般用来截图,不过界面很不错。包括系统设置和窗口透明度等,值得一看-Themselves on the basis of a swing-line adaptation procedure, I am generally used to capture, but the interface is pretty good. Including system settings and window transparency and so on, worth a visit
- 2022-03-01 09:39:26下载
- 积分: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