-
本程序是一个环境中的一个环境,在建的菜单程序,例子,我,..
本程序是一个在vc环境下构建菜单程序的实例本人希望所有对vc可视化编程感兴趣的网友们分享本人的一点心得本程序有很强的代表性有利于读者举一反三-this procedure is an environment in vc Construction menu procedures examples I hope that all right vc Visual Programming interested netizens to share my experience of this program is a strong representation is conducive to draw inferences from readers
- 2022-06-14 02:37:46下载
- 积分:1
-
透明滑动条的实现方法。
透明滑动条的实现方法。- Transparently skids the strip realization method.
- 2022-02-25 21:58:34下载
- 积分:1
-
用c语言编写的记事本程序,可以实现记事本的相关功能
用c语言编写的记事本程序,可以实现记事本的相关功能-prepared by the Chronicle this program, the notebook can achieve the related functional
- 2022-12-16 02:10:03下载
- 积分:1
-
Perl/Tk-Calculator 基于Perl/Tk的简易计算器程序
Perl/Tk-Calculator 基于Perl/Tk的简易计算器程序
#一些细节:小数点只能输入一次,若显示框内已有小数则小数点按钮无效
# 在连续按下运算符时,计算器只识别最后一次按钮事件。例如,依次按下‘1’‘/’‘*’‘2’,实际计算1*2,得2。
# 可以连续输入运算,例如一次按下‘1’‘-’‘1’‘+’‘1’‘=’后,显示结果为 1。
# 前一次运算所得结果可以直接参与下一次运算(若一次运算结束后按下数字,则视为新的运算开始,前次结果不会参与运算)。
* 需要 Perl/Tk模块支持
- 2023-03-21 21:50:03下载
- 积分:1
-
MFC program code
详述用MFC的进行编程的源代码,包括各种界面,从简入深-MFC program code
- 2023-01-05 11:45:08下载
- 积分:1
-
- 2022-08-21 07:06:59下载
- 积分:1
-
a very good interface and special effects programming examples! Flame, water, la...
一个很不错的界面和特效编程例子!火焰、水波、熔岩三类特效,值得学习!-a very good interface and special effects programming examples! Flame, water, lava three types of effects, it is worth learning!
- 2022-01-21 18:51:17下载
- 积分:1
-
MFC_学生成绩管理系统
输入功能:由键盘输入若干个学生的学号、姓名、三科成绩,并计算出平均成绩和总成
绩。
2. 插入功能:按学号增加一个学生信息,并将其插入。
3. 排序功能,按要求对学生信息进行排序,分为按学号和按总成绩进行排序两种情形,并
输出结果。
4. 查询功能:按要求查找学生信息,分为按学号和姓名进行查询两种情形,并输出结果。
5. 删除功能:按要求将学生信息删除,分为按学号和姓名进行删除两种情形。
6. 输出功能:按学号输出学生信息。
7. 成绩升降:同一个学生,不同时期之间成绩浮动情况查询。
- 2022-05-21 10:26:02下载
- 积分: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
-
一个日历的例子MiniCalendar
一个日历的例子MiniCalendar--An example of Mini Calendar
- 2022-03-10 08:34:46下载
- 积分:1