Form_About.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. using System.Diagnostics;
  9. using System.Resources;
  10. using System.Reflection;
  11. namespace NetworkDiscovery
  12. {
  13. public partial class Form_About : Form
  14. {
  15. public System.Windows.Forms.LinkLabel linkLabel1;
  16. public System.Windows.Forms.Label label1;
  17. private Button picButton = new Button();
  18. public Form_About()
  19. {
  20. InitializeComponent();
  21. this.Load += new EventHandler(Form2_Load);
  22. }
  23. private void linkLabel1_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
  24. {
  25. this.linkLabel1.LinkVisited = true;
  26. System.Diagnostics.Process.Start("http://rotek.ru/");
  27. }
  28. private void Form2_Load(object sender, EventArgs e)
  29. {
  30. picButton.Size = new Size(360, 200);
  31. picButton.Location = new Point(70, 40);
  32. picButton.Enabled = false;
  33. picButton.BackgroundImage = Properties.Resources.rotek_logo_eng;
  34. picButton.BackgroundImageLayout = ImageLayout.Center;
  35. picButton.FlatAppearance.BorderSize = 0;
  36. picButton.FlatStyle = FlatStyle.Flat;
  37. this.Controls.AddRange(new System.Windows.Forms.Control[] { this.picButton });
  38. this.linkLabel1 = new System.Windows.Forms.LinkLabel();
  39. this.linkLabel1.AutoSize = true;
  40. this.linkLabel1.Location = new System.Drawing.Point(160, 390);
  41. this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
  42. this.linkLabel1.Text = "Перейти на официальный сайт";
  43. this.Controls.AddRange(new System.Windows.Forms.Control[] { this.linkLabel1 });
  44. this.label1 = new System.Windows.Forms.Label();
  45. this.label1.Location = new System.Drawing.Point(195, 420);
  46. this.label1.Text = "Версия ПО: 1.1.1";
  47. this.label1.Size = new Size(label1.PreferredWidth, label1.PreferredHeight);
  48. this.Controls.AddRange(new System.Windows.Forms.Control[] { this.label1 });
  49. }
  50. }
  51. }