-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout_Us.cs
31 lines (29 loc) · 886 Bytes
/
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Telerik.WinControls.UI;
using Charon_DNS_Changer.Core;
namespace Charon_DNS_Changer
{
public partial class About_Us : RadForm
{
private CharonPlayerSounds.CharonPlayer2 ch_player = new CharonPlayerSounds.CharonPlayer2();
public About_Us()
{
InitializeComponent();
richTextBox_about_us.Text = AboutUsConfig.about_us_content();
ch_player.LoadSound(Properties.Resources.ab_us);
ch_player.PlaySound();
}
private void About_Us_FormClosed(object sender, FormClosedEventArgs e)
{
ch_player.StopSound();
}
}
}