资源简介

C#点名程序,也可当作是一个随机摇号或幸运抽奖程序,可以帮助老师在课堂上进行随机点名, 实例采用Visual Studio 2008作为开发工具,采用C#开发。 为了简单数据存储采用文件的形式。在系统的bin目录下用lottery.asf存放学生的信息。 lottery.asf是Access数据库,为了安全改名为lottery.asf。 通过参与此系统的开发,读者可以了解信息管理系统的需求分析、设计和实现的完整过程, 掌握Access数据库的基本管理方法、常用SQL语言的使用方法以及C#数据库开发技术,积累有效的数据库应用系统实战经验。

资源截图

代码片段和文件信息

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
//该源码下载自C#编程网|www.cpbcw.com
namespace ideology
{
/// 
/// about 的摘要说明。
/// 

public class about : System.Windows.Forms.Form
{
private System.Windows.Forms.Timer timer1;
private System.ComponentModel.IContainer components;


public about()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();

//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}

/// 
/// 清理所有正在使用的资源。
/// 

protected override void Dispose( bool disposing )
{
if( disposing )
{
if(components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

#region Windows 窗体设计器生成的代码
/// 
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// 

private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.timer1 = new System.Windows.Forms.Timer(this.components);
// 
// about
// 
this.AutoScalebaseSize = new System.Drawing.Size(6 14);
this.BackColor = System.Drawing.Color.GhostWhite;
this.ClientSize = new System.Drawing.Size(304 224);
this.FormBorderstyle = System.Windows.Forms.FormBorderstyle.None;
this.Name = “about“;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = “about“;
this.TopMost = true;
this.Load += new System.EventHandler(this.about_Load);
this.DoubleClick += new System.EventHandler(this.about_DoubleClick);

}
#endregion

private void about_Load(object sender System.EventArgs e)
{
fromOpacity(1080) ;
}
private void fromOpacity(int BegOpacityint EndOpacity)
{
 this.Opacity =0.1;
 
 timer1.Start();
         timer1.Tick+=new  EventHandler(timer1_Tick);
}
private void timer1_Tick(object sender System.EventArgs e)
{
if (this.Opacity<0.8)
{
this.Opacity=this.Opacity+0.1;
}
else
{
timer1.Stop();
}
}

private void about_DoubleClick(object sender System.EventArgs e)
{
this.Close();
}


}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       2852  2010-10-19 23:45  Properties\Resources.Designer.cs

     文件       5817  2009-11-06 13:52  Properties\Resources.resx

     文件     107040  2009-11-06 14:22  Resources\biaozhi.Image.png

     文件       9942  2009-11-06 14:59  Resources\F_begin.Image.png

     文件      15621  2009-11-06 15:10  Resources\F_open.Image.png

     文件       2550  2009-10-06 18:36  Resources\hi.ico

     文件      18701  2009-11-11 19:28  Resources\pictureBox1.BackgroundImage.jpg

     文件       2326  2011-10-11 08:57  about.cs

     文件       7004  2004-12-13 15:27  about.resx

     文件       1078  2004-11-26 18:27  App.ico

     文件       1895  2011-10-11 08:57  AssemblyInfo.cs

     文件      25107  2011-10-11 08:57  Form1.cs

     文件     678160  2009-10-08 21:27  Form1.resx

     文件       2550  2009-11-06 15:34  hi.ico

     文件       5291  2010-10-19 23:45  ideology.csproj

     文件       2123  2010-10-19 23:44  ideology.csproj.user

     文件        900  2010-10-19 23:45  ideology.sln

    ..A..H.     18944  2011-10-11 08:58  ideology.suo

     文件       2603  2011-02-22 21:23  logo.gif

     文件        712  2009-11-11 20:34  pass.xml

     文件        190  2011-02-01 21:29  更多C#源码下载.url

     文件       2250  2011-10-11 08:58  下载必读.txt

     文件       2290  2009-10-08 21:32  Backup\about.cs

     文件       7004  2004-12-13 15:27  Backup\about.resx

     文件       1078  2004-11-26 18:27  Backup\App.ico

     文件       1896  2009-02-14 20:45  Backup\AssemblyInfo.cs

     文件      25071  2009-12-08 21:38  Backup\Form1.cs

     文件     678160  2009-10-08 21:27  Backup\Form1.resx

     文件       2550  2009-11-06 15:34  Backup\hi.ico

     文件       4999  2009-12-08 21:39  Backup\ideology.csproj

............此处省略50个文件信息

评论

共有 条评论