CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 界面编程 对话框与窗口 搜索资源 - 对话框设置

搜索资源列表

  1. TabDialogsrc

    0下载:
  2. 类似 WINAMP,紫光拼音的“参数设置”风格对话框 -similar alpha, Ziguang Pinyin "Preferences" dialog style
  3. 所属分类:对话框与窗口

    • 发布日期:2008-10-13
    • 文件大小:14545
    • 提供者:waterwhu
  1. Graytransform

    0下载:
  2. 采用VC编写的灰度线性变换程序,是一个很好的学习及理解灰度线性变换的资料,同时也可以借此了解VC中对话框的设置
  3. 所属分类:对话框与窗口

    • 发布日期:2008-10-13
    • 文件大小:75021
    • 提供者:巢歌
  1. IP

    0下载:
  2. 是用VC++编写的,程序功能是设置本机IP,可用在属性页面上或对话框中。适合初次编写网络应用程序的朋友。
  3. 所属分类:对话框与窗口

    • 发布日期:2008-10-13
    • 文件大小:70138
    • 提供者:葡萄
  1. flower.rar

    0下载:
  2. 本程序实现了如何绘制花瓣图形的功能,它可以通过对话框的设置来改变花瓣个数,This procedure of how to realize the function of rendering graphics petals, it can be the settings dialog box to change the number of petals
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-10
    • 文件大小:2188856
    • 提供者:weiqiang
  1. Mybole

    0下载:
  2. 对话框基本操作,适合初学者,看完此代码可大体掌握对话框的基本操作和设置-Basic operation of the dialog box, suitable for beginners, this code can be read broadly to master the basic operation and set the dialog box
  3. 所属分类:Dialog_Window

    • 发布日期:2017-04-09
    • 文件大小:1937711
    • 提供者:张一凡
  1. TSP

    0下载:
  2. 用蚁群算法实现的TSP问题,有对话框界面,自己可以设置参数变量。-Ant colony algorithm for TSP problem, a dialog box interface, they can set the parameters variable.
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-24
    • 文件大小:8085945
    • 提供者:丛金鑫
  1. Graphic

    0下载:
  2. VC++基于MFC中,综合图形绘制,设置,颜色对话框,位图显示等-Graphics drawing, Settings, color dialog, bitmap display
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-21
    • 文件大小:6563812
    • 提供者:曾伟
  1. PieClient

    0下载:
  2. 一个自动绘制饼状图表的软件,可以设置对话框中4种颜色代表的值,程序自动计算饼图中各色所占百分比并自动绘制饼图。-An automatic pie chart drawing software, can set the dialog box on behalf of four kinds of color values, the program automatically calculates the percentage of pie chart in different colors and
  3. 所属分类:Dialog_Window

    • 发布日期:2017-03-31
    • 文件大小:20557
    • 提供者:郎志超
  1. numberflash

    0下载:
  2. 数字闪烁对话框,数字1-9分别闪烁。 闪烁颜色以及时间、次数可以自行设置。 有需要刺激器的,可以尝试-Digital flashing dialog box, the numbers 1-9 were flashing. Flashing colors as well as time and frequency can be set up on their own. There is a need to stimulate the device, you can try
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-14
    • 文件大小:3449465
    • 提供者:张诚
  1. SetAngle

    0下载:
  2. MFC对话框 按输入值设置圆形表盘的角度-MFC mode of dialog,set angle base on the value which input
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-23
    • 文件大小:7637426
    • 提供者:wjx
  1. dlgforever

    0下载:
  2. 《创建一个不可关闭的对话框》 [代码性质] VC完整应用程序代码 创建一个基于对话框的工程,一切默认即可。 在对话框的属性general中,设置caption为空,这样用ctrl+alt+del就发现不到此 程序。 在对话框的属性more stytle 中,选中disable,这样就不能用右键关闭此程序。 删除取消按钮,双击确定按钮,在其对应函数中将 CDialog::OnOK()删除。这样就 不能用回车关闭此程序。如果只是简单的删除确定按钮是不行的。 当然了,要是关闭计算机之类的操作,那就没办
  3. 所属分类:Dialog_Window

    • 发布日期:2017-11-14
    • 文件大小:26235
    • 提供者:代伟
  1. EightQueen

    0下载:
  2. 八皇后的VC图形演示,本程序基于对话框,可以设置不同的条件进行程序的运行!-Eight of the VC
  3. 所属分类:Dialog_Window

    • 发布日期:2017-03-29
    • 文件大小:52516
    • 提供者:Bob Green
  1. ParentProcess

    0下载:
  2. 一个实例来介绍父子进程间如何共享内核对象。首先在父进程中创建一个事件对象,该事件对象能够被子进程继承,但是初始状态没有信号。然后父进程创建一个子进程,使子进程能够继承父进程中的内核对象句柄。在子进程初始化时创建一个线程,并立即运行线程函数。在线程函数中循环判断从父进程继承的事件对象是否有信号,如果有信号,将对话框标题设置为“事件有信号”,然后退出线程。由于父进程在创建事件对象时,使事件对象没有信号,因此,子进程中的对话框标题不会改变。为了演示父子进程间共享内核对象,在父进程中设计了一个按钮,单击
  3. 所属分类:Dialog_Window

    • 发布日期:2017-04-17
    • 文件大小:111659
    • 提供者:jacklee
  1. clock

    0下载:
  2. 程序模拟一台高级时钟,功能包括以指针方式显示、以数字方式显示、日历和秒表等;可设置时间和日期。 程序使用对话框结构,左方有框显示指针式钟面,其下方有两个矩形框,一个以数字方式显示日期、星期和时间,该时间应与指针显示的时间一致。另一个框作为秒表的显示框。对话框右方有设置时间按钮、时间快进按钮和秒表按钮。-Process simulation of a high-level clock, features include a pointer display, digital display,
  3. 所属分类:Dialog_Window

    • 发布日期:2017-04-03
    • 文件大小:20324
    • 提供者:李明
  1. show

    0下载:
  2. 在对话框里设置一个炮台,点击反射就可以发射炮弹,点击爆炸就可以爆炸-In the dialog box to set up a fort, click the reflex can be fired artillery shells, click the explosion could be an explosion
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-08
    • 文件大小:29457
    • 提供者:xusi
  1. TabSheet

    0下载:
  2. /*********************************************************************** * 本类名称:属性对话框编程调用类库(VC++版) * 支持功能:动态添加、移除属性页;动态修改属性页标题;设置活动属性页;获取属性页的属性等。 * 编写人员:Coderui * 编写日期:2009年02月03日 * 最后更新:2009年02月09日 * 联系邮箱:coderui@163.com * 作者博客:
  3. 所属分类:Dialog_Window

    • 发布日期:2017-04-02
    • 文件大小:21774
    • 提供者:coderui
  1. graphic

    0下载:
  2. 本程序能实现通过对话框来实现图形绘制时线宽,线性,颜色的设置-This procedure can achieve through the dialog to achieve when the linewidth Rendering, linear, color settings
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-26
    • 文件大小:9156476
    • 提供者:weiqiang
  1. test

    0下载:
  2. 用VC++做了一个对话框,可以在里面设置人名,性别和年龄。-Using VC++ to do a dialog box, you can set up the name,gender and age of a person.
  3. 所属分类:Dialog_Window

    • 发布日期:2017-04-04
    • 文件大小:31570
    • 提供者:吴翩翩
  1. 04

    1下载:
  2. 一个设置打印纸大小的基于对话框的vc应用程序。-A printing paper size settings dialog box vc-based applications.
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-08
    • 文件大小:1990256
    • 提供者:happy_ice
  1. gridding

    0下载:
  2. 利用vc++环境实现对话框的网格设置,及颜色设置-Using vc++ environment for the realization of the grid settings dialog box, and color settings
  3. 所属分类:Dialog_Window

    • 发布日期:2017-05-13
    • 文件大小:3258837
    • 提供者:包包
« 1 2 3 45 6 7 »
搜珍网 www.dssz.com