-
MiniGUI for real
MiniGUI 为实时嵌入式操作系统提供了非常完善的图形及图形用户界面支持。MiniGUI 本身的可移植性设计,使得不论在哪个硬件平台、哪种操作系统上运行,MiniGUI 均能为上层应用程序提供一致的应用程序编程接口(API)。
minigui中button控件的实现-MiniGUI for real-time embedded operating system offers excellent graphics and graphical user interface support. MiniGUI itself portability design, which makes both the hardware platform or operating system running on MiniGUI can for top applications to provide a consistent application programming interface (API). MiniGUI which button controls to achieve
- 2022-02-05 17:53:30下载
- 积分:1
-
代码演示了C# windowsForm 中的各个对话框,包括打开关闭文件对话框,颜色对话框,字体对话框,打印及打印预览对话框。...
代码演示了C# windowsForm 中的各个对话框,包括打开关闭文件对话框,颜色对话框,字体对话框,打印及打印预览对话框。-demonstrated a code C# windowsForm the various dialog boxes, including the closure of open file dialog, the dialog color, font dialog, Print and Print Preview dialog.
- 2022-11-21 07:30:03下载
- 积分:1
-
variety of different kinds of buttons, yes
各种样式 的按钮,不错-variety of different kinds of buttons, yes
- 2022-02-15 21:29:56下载
- 积分:1
-
本人热中与vb开发小软件 因为我只是一个学生哦,现在仍在锻炼中,有什么问题一定指教...
本人热中与vb开发小软件 因为我只是一个学生哦,现在仍在锻炼中,有什么问题一定指教-enthusiastic vb small software development because I am just a student, oh, it is still being tempered, what will enlighten
- 2023-02-18 04:40:03下载
- 积分:1
-
静态切分窗口,这个类是从WTL的SplitterWnd里面扒出来的,因为MFC的SplitterWnd实在是 太太太难用了,而且很难看,看到WTL里面的这个不错...
静态切分窗口,这个类是从WTL的SplitterWnd里面扒出来的,因为MFC的SplitterWnd实在是 太太太难用了,而且很难看,看到WTL里面的这个不错,想拿来用,不过如果是MFC程序的话再加上WTL的风格有些不协调,就干脆把它的形式改成MFC的风格了,函数看着挺多,不过常用并不多,至于注释嘛,我只是在经常用的函数声明上大概写了几句,相知道具体实现,那就去看代码吧:)-splitting static window, this category is from the WTL serving SplitterWnd inside out, because MFC SplitterWnd wife is too hard to use and hard to see inside the WTL Yes, they will apply to, but if MFC procedures for the WTL coupled with the style of some disharmony on stem crisp it into the form of MFC style, watching sport the function, but more commonly used is not as Notes, but as I was frequently used function declaration probably write a few words, is to know the specific realization, then look at the code it :)
- 2022-06-02 06:01:45下载
- 积分:1
-
一个很好用的图象特效控件,请参考其中的源带代码学习怎么使用...
一个很好用的图象特效控件,请参考其中的源带代码学习怎么使用-a good image with the effects controls, please refer to the source code with learning how to use
- 2022-01-25 22:08:07下载
- 积分:1
-
谷 歌 Chrome进度条
翻译 maninwest@Codeforge 作者:VallarasuS@CodeProject这里展示如何从头开始创建一个 Go ogle Chrome 主题的 进度条。任何进度条控件都依赖于一个值及表示进度值的图形。 Goo gle Chrome 下载程序有个圆圈表示进度。使用代码ChromeProgressBaris 跟 Chrome ProgressBar 的工作原理一样。将进度值转化为一个圆圈图形来表示.private void PaintProgress(PaintEventArgs e)
{ using( SolidBrush progressBrush = new SolidBrush(this.ProgressColor))
{
Rectangle rect = LayoutInternal.ProgressRectangle;
rect.Inflate(-2, -2);
rect.Height -= 2; rect.Width -= 2; float startAngle = -90; float sweepAngle = Progress / 100 * 360;
e.Graphics.FillPie(progressBrush, rect, startAngle, sweepAngle);
}
}这里是如何使用图形路径和4条线绘制圆圈和细分部分。对 Graphics 对象的剪切部分进行调整来剪切圆圈外的线。private void PaintBorder(PaintEventArgs e)
{
GraphicsPath borderPath = new GraphicsPath();
Rectangle progressRect = LayoutInternal.Prog
- 2022-08-08 07:55:37下载
- 积分:1
-
the procedures introduced by a group check box to control internal controls so a...
本程序介绍一个由check组框来控制内部控件使能 在要使用的工程中添加类CCheckableGroupBox 在资源中属于这个组框的控件设置group项目 在使用的类中 坐组框的变量映射 CCheckableGroupBox m_groupD CCheckableGroupBox m_groupQ CCheckableGroupBox m_groupZ 在使用类的初始化中 m_groupZ.SetTitleStyle(BS_AUTOCHECKBOX) //Default to check box already in class m_groupZ.SetGroupID(1) m_groupQ.SetTitleStyle(BS_AUTORADIOBUTTON) m_groupQ.SetGroupID(0) m_groupQ.SetCheck(1) m_groupD.SetTitleStyle(BS_AUTORADIOBUTTON) m_groupD.SetGroupID(0) SetTitleStyle:函数中1BS_AUTOCHECKBOX:为方型框.2BS_AUTORADIOBUTTON:为原型框 SetGroupID函数:参数中为1:不用内部控件不用选择group项目,为0要选择 Setcheck函数:参数为1:enabel,为0:unenable-the procedures introduced by a group check box to control internal controls so as to enable the project to use the added category CCheckableGroupBox resources belonging to the group box set of controls group projects in the category sitting Group variable frame mapping CCheckableGroupBox m_groupD CCheckableGroupBox m_groupQ CCheckableGroupBox m_groupZ the use of the initial category m_groupZ.SetTitleS
- 2022-11-13 07:15:03下载
- 积分:1
-
在*作滚动实例VisualBasic使用.zip
use visualbasic for make scroll exsample in *.zip-use visualbasic for make scroll exsample in*.zip
- 2022-09-08 12:55:03下载
- 积分:1
-
Mac,Office 2003,WinXP等多种风格的按钮控件
Mac,Office 2003,WinXP等多种风格的按钮控件-Mac, Office 2003, WinXP various styles of button controls
- 2022-08-10 16:13:56下载
- 积分:1