登录
首页 » 界面开发 » 根据需求分析的描述,以及与第三…

根据需求分析的描述,以及与第三…

于 2022-02-26 发布 文件大小:2.18 MB
0 122
下载积分: 2 下载次数: 1

代码说明:

根据需求分析的描述以及与用户的沟通,系统实现目标如下:  界面设计简洁、友好、美观大方。  操作简单、快捷方便  数据存储安全、可靠。  信息分类清晰、准确。  强大的查询功能,保证数据查询的灵活性。  提供销售排行榜,为管理员提供真实的数据信息。  提供灵活、方便的权限设置功能,使整个系统的管理分工明确。  对用户输入的数据,系统进行严格的数据检验,尽可能排除人为的错误。 -According to the description of needs analysis, as well as communication with the user, the system to achieve the following goals:  interface design of simple, friendly, generous appearance.  simple, fast and convenient data storage  safe and reliable. Information classification  clear and accurate.  powerful query functions, and ensure the flexibility of data query.  sales chart for the data manager to provide true information.  provide a flexible and convenient feature set permissions so that the management of the entire system a clear division of labor.  on data entered by the user, the system data strict examination, rule out the possibility of human e

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Browse for a Folder using SHBrowseForFolder API function with a callback functio...
    Browse for a Folder using SHBrowseForFolder API function with a callback function BrowseCallbackProc. This Extends the functionality that was given in the MSDN Knowledge Base article Q179497 "HOWTO: Select a Directory Without the Common Dialog Control".-Browse for a Folder using SHBrowseForFolder API function with a callback function BrowseCallbackProc. This Extends the functionality that was given in the MSDN Knowledge Base article Q179497 " HOWTO: Select a Directory Without the Common Dialog Control" .
    2022-04-21 06:12:59下载
    积分:1
  • Here, this a source code to init VESA graphic mode! It can init graphic in 1028x...
    Here, this a source code to init VESA graphic mode! It can init graphic in 1028x768 pixel resolution!-Here, this is a source code to init VESA graphic mode! It can init graphic in 1028x768 pixel resolution!
    2022-07-24 06:19:45下载
    积分:1
  • Xtreme Toolkit是一套MFC扩展类,用于应用程序。利用它,可以快速的出MS Office、Visual Studio和Internet...
    Xtreme Toolkit是一套MFC扩展类,用于开发应用程序界面。利用它,可以快速的开发出MS Office、Visual Studio和Internet Explorer、Outlook等图形用户界面(GUI),包括如的智能菜单、快捷工具条和挺靠窗口,支持XP界面风格。 -Xtreme Toolkit is a set of MFC extension of the class, for the development and application program interface. Using them can be quickly developed MS Office, Visual Studio and Internet Explorer. Outlook, and other graphical user interface (GUI), including the menu as smart, fast and quite tools on windows, support XP interface styles.
    2022-04-20 01:52:36下载
    积分:1
  • rules : only when there is the point of threading button, and then only in the h...
    规则:只能在有纽扣的点穿线,且只能在水平方向或竖直方向穿 线。线可交叉,但有纽扣的点不能交叉连接。-rules : only when there is the point of threading button, and then only in the horizontal direction or vertical direction of threading. Cross-line, but the point Button can cross-connect.
    2022-03-03 05:17:14下载
    积分:1
  • 动态库的编写
    创建的动态库,能现实出界面,通过这个列程能学习到动态库的调用,以及界面的编写,可以把它当做设备驱动程序来调用和编写
    2022-02-20 01:33:06下载
    积分:1
  • 用C++模板实现的双向链表
    用C++模板实现的双向链表,只要一个.h文件不用怀疑,实现部分只能放到.h中,放到.cpp编译不过去,为什么我也不知道!HeroUnknown.h HeroUnknown.cpp是对GUID的封装,我用了很长时间啦!感觉还可以!
    2022-02-06 19:40:46下载
    积分:1
  • 高级看图软件源码
    这是一个高级的图像查看器,包含一些WPF控件 (旋转、 放大 … … flib) 以及新的样式和动画
    2022-08-19 02:10:01下载
    积分:1
  • 卡耐基ssd9考试实际问题
    应用背景这是一个下载文件http://dfiles.ru/files/3euxda9gv链接。这只是一个任务。自我准备。(卡耐基——ssd9——认证考试实践——2变种(配件和支付))。维护,要求清单,ST,用例建模,时序图,类图等。关键技术延长需在线仪器购物系统提供配件仪器销售按以下规范。规范延长需系统允许用户购买配件仪器。应用程序的主窗口应包括展示产品和配件按钮允许用户买仪器和配件,如下面的屏幕快照所示。注:当用户从列表中选择一个产品,关于产品的细节显示为好。
    2022-03-18 17:31:32下载
    积分: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
  • Non
    非模式对话框,使用彩色进度条,修改别人的基础上生成-Non-modal dialog box, use the progress bar color, modify the basis of others to generate
    2022-02-02 06:50:48下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载