ImageVerifierCode 换一换
格式:DOCX , 页数:105 ,大小:39.11KB ,
资源ID:20925577      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/20925577.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(停车场系统代码Word下载.docx)为本站会员(b****6)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

停车场系统代码Word下载.docx

1、 / - AssemblyInfo.cs this.Text = String.Format(关于 0, AssemblyTitle); this.labelProductName.Text = AssemblyProduct; this.labelVersion.Text = String.Format(版本 0, AssemblyVersion); this.labelCopyright.Text = AssemblyCopyright; this.labelCompanyName.Text = AssemblyCompany; this.textBoxDescription.Text =

2、 AssemblyDescription; #region 程序集属性访问器 public string AssemblyTitle get / 获取此程序集上的所有 Title 属性 object attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false); / 如果至少有一个 Title 属性 if (attributes.Length 0) / 请选择第一个属性 AssemblyTitleAttribute titleAttribute =

3、(AssemblyTitleAttribute)attributes0; / 如果该属性为非空字符串,则将其返回 if (titleAttribute.Title != ) return titleAttribute.Title; / 如果没有 Title 属性,或者 Title 属性为一个空字符串,则返回 .exe 的名称 return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase); public string AssemblyVersion return Assemb

4、ly.GetExecutingAssembly().GetName().Version.ToString(); public string AssemblyDescription / 获取此程序集的所有 Description 属性 object attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false); / 如果 Description 属性不存在,则返回一个空字符串 if (attributes.Length = 0) retur

5、n ; / 如果有 Description 属性,则返回该属性的值 return (AssemblyDescriptionAttribute)attributes0).Description; public string AssemblyProduct / 获取此程序集上的所有 Product 属性 object attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false); / 如果 Product 属性不存在,则返回一个空字符串 / 如果有

6、Product 属性,则返回该属性的值 return (AssemblyProductAttribute)attributes0).Product; public string AssemblyCopyright / 获取此程序集上的所有 Copyright 属性 object attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); / 如果 Copyright 属性不存在,则返回一个空字符串 / 如果有 Copyright 属性,则

7、返回该属性的值 return (AssemblyCopyrightAttribute)attributes0).Copyright; public string AssemblyCompany / 获取此程序集上的所有 Company 属性 object attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); / 如果 Company 属性不存在,则返回一个空字符串 / 如果有 Company 属性,则返回该属性的值 return (As

8、semblyCompanyAttribute)attributes0).Company; #endregionnamespace CarManager partial class AboutBox1 / / 必需的设计器变量。/summary private System.ComponentModel.IContainer components = null; / 清理所有正在使用的资源。 protected override void Dispose(bool disposing) if (disposing & (components != null) components.Dispose

9、(); base.Dispose(disposing); #region Windows 窗体设计器生成的代码 / 设计器支持所需的方法 - 不要 / 使用代码编辑器修改此方法的内容。 private void InitializeComponent() System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBox1); this.tableLayoutPanel = new System.Windows.

10、Forms.TableLayoutPanel(); this.logoPictureBox = new System.Windows.Forms.PictureBox(); this.labelProductName = new System.Windows.Forms.Label(); this.labelVersion = new System.Windows.Forms.Label(); this.labelCopyright = new System.Windows.Forms.Label(); this.labelCompanyName = new System.Windows.Fo

11、rms.Label(); this.textBoxDescription = new System.Windows.Forms.TextBox(); this.okButton = new System.Windows.Forms.Button(); this.tableLayoutPanel.SuspendLayout(); (System.ComponentModel.ISupportInitialize)(this.logoPictureBox).BeginInit(); this.SuspendLayout(); / / tableLayoutPanel this.tableLayou

12、tPanel.ColumnCount = 2; this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F); this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F); this.tableLayoutPanel.Controls.Add

13、(this.logoPictureBox, 0, 0); this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0); this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1); this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2); this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3); this.tableLayoutP

14、anel.Controls.Add(this.textBoxDescription, 1, 4); this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5); this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanel.Location = new System.Drawing.Point(9, 8); this.tableLayoutPanel.Name = tableLayoutPanel this.tableLayout

15、Panel.RowCount = 6; this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F); this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F); this.tableLayoutPanel.Size = new System.Drawing.Si

16、ze(417, 245); this.tableLayoutPanel.TabIndex = 0; / logoPictureBox this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill; this.logoPictureBox.Image = (System.Drawing.Image)(resources.GetObject(logoPictureBox.Image); this.logoPictureBox.Location = new System.Drawing.Point(3, 3); this.logoPic

17、tureBox.Name = logoPictureBox this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6); this.logoPictureBox.Size = new System.Drawing.Size(131, 239); this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.logoPictureBox.TabIndex = 12; this.logoPictureBox.TabStop =

18、false; / labelProductName this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill; this.labelProductName.Font = new System.Drawing.Font(微软雅黑, 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, (byte)(134); this.labelProductName.Location = new System.Drawing.Point(143, 0);

19、 this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); this.labelProductName.MaximumSize = new System.Drawing.Size(0, 16); this.labelProductName.Name = labelProductName this.labelProductName.Size = new System.Drawing.Size(271, 16); this.labelProductName.TabIndex = 19; this.lab

20、elProductName.Text = 停车场管理系统 this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; / labelVersion this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill; this.labelVersion.Font = new System.Drawing.Font(, 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit

21、.Point, (byte)(134); this.labelVersion.Location = new System.Drawing.Point(143, 24); this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); this.labelVersion.MaximumSize = new System.Drawing.Size(0, 16); this.labelVersion.Name = labelVersion this.labelVersion.Size = new System.Draw

22、ing.Size(271, 16); this.labelVersion.TabIndex = 0; this.labelVersion.Text = 版本 1.0 this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; / labelCopyright this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill; this.labelCopyright.Font = new System.Drawing.Font( this.label

23、Copyright.Location = new System.Drawing.Point(143, 48); this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 16); this.labelCopyright.Name = labelCopyright this.labelCopyright.Size = new System.Drawing.Size(271, 16);

24、this.labelCopyright.TabIndex = 21; this.labelCopyright.Text = Copyright hcl this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; / labelCompanyName this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill; this.labelCompanyName.Font = new System.Drawing.Font( this.labe

25、lCompanyName.Location = new System.Drawing.Point(143, 72); this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 16); this.labelCompanyName.Name = labelCompanyName this.labelCompanyName.Size = new System.Drawing.Si

26、ze(271, 16); this.labelCompanyName.TabIndex = 22; this.labelCompanyName.Text = 公司名称 ustb this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; / textBoxDescription this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill; this.textBoxDescription.Font = new System.Drawing.Font( this.textBoxDescription.Location = new System.Drawing.Point(143, 99); this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1