-
Notifications
You must be signed in to change notification settings - Fork 0
/
about_us.cs
51 lines (43 loc) · 1.45 KB
/
about_us.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using Abdal_Security_Group_App.Core;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Abdal_Security_Group_App
{
public partial class about_us : Telerik.WinControls.UI.RadForm
{
private AbdalSoundPlayer ab_player = new AbdalSoundPlayer();
public about_us()
{
InitializeComponent();
Version version = Assembly.GetExecutingAssembly().GetName().Version!;
label_version.Text = "Version:" + " " + version.Major + "." + version.Minor;
ab_player.sPlayer("ab-us");
}
private void about_us_Load(object sender, EventArgs e)
{
richTextBox_about_us.Text = AboutUsWriter.about_us_content();
}
private void about_us_FormClosing(object sender, FormClosingEventArgs e)
{
ab_player.sPlayer("checkbox");
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
ab_player.sPlayer("checkbox");
Kevin_Mitnick kevin_form = new Abdal_Security_Group_App.Kevin_Mitnick();
kevin_form.ShowDialog();
kevin_form.TopMost = true;
}
private void linkLabel1_Click(object sender, EventArgs e)
{
}
}
}