-
SkinMenu sample program, study
SkinMenu 示例程序,可以研究一下-SkinMenu sample program, study
- 2022-03-06 23:13:38下载
- 积分:1
-
箭头的阴谋
箭头情节 matlab 代码
%箭头绘制带有箭头的线。
%
%Arrow(start,stop) 绘制带有箭头的线从启动到停止 (点
%应该是 2 或 3,长度的向量或矩阵的 2 或 3
%列),并返回的 arrow(s) 的图形句柄。
- 2022-05-10 18:45:16下载
- 积分:1
-
属于界面编程,在mfc中的对话框中添加位图。
属于界面编程,在mfc中的对话框中添加位图。-Belonging to the interface programming, the dialog box in mfc add bitmaps.
- 2022-05-14 20:07:22下载
- 积分:1
-
AD2003操作工具
微软活动目录2003自定义操作工具,适用与企业管理。一、系统环境系统环境:Windows Server 2008 R2, VS2010, .Net Framework 4.0AD Server:LDAP的server IP基本DN:OU=user,DC=Company,DC=com用来登录的管理员:Peter密码:ab#CD%1234二、程序1. 引用.Net操作AD的类在命名空间System.DirectoryServices下,需要将该类引用进来。2. 连接要操作AD需首先连接AD,就象要操作数据先要连接数据库一样。3. 查询根据各种条件获取具体的用户。下例为根据公共名称获取对象。4. 修改用户
- 2023-08-24 23:40:03下载
- 积分:1
-
用鼠标从一个进程的button,拖到另外进程中,并能将信息复制过来...
用鼠标从一个进程的button,拖到另外进程中,并能将信息复制过来-With the mouse from a process button, drag the other process, and are able to copy information from
- 2022-03-29 09:03:31下载
- 积分: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
-
你好,这是一个很好的提示
hello,this is a very good tooltip
- 2022-08-08 19:16:53下载
- 积分:1
-
这个程序是一个自我
本程序是一个以自定义图片为标题栏背景的应用程序。使的界面更加美观和富有个性化。-this program is a self-definition pictures column heading for background applications. To make the interface more attractive and highly personalized.
- 2022-02-11 15:42:47下载
- 积分:1
-
Win32教程26
Win32教程26-启动画面-Win32 Guide 26-START UP
- 2022-03-29 13:31:38下载
- 积分:1
-
呼叫中心交换机监控器,可配合交换机完成队坐席的监听,指导等作用...
呼叫中心交换机监控器,可配合交换机完成队坐席的监听,指导等作用-Monitor call center switches, and with teams switch to complete the listening seat, the role of guidance
- 2022-08-20 01:48:01下载
- 积分:1