mirror of
https://github.com/Mibew/i18n.git
synced 2025-04-06 12:10:11 +03:00
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@37 c66351dc-e62f-0410-b875-e3a5c0b9693f
40 lines
976 B
C#
40 lines
976 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace webImTray {
|
|
public partial class About : UserControl, OptionsPanel {
|
|
public About() {
|
|
InitializeComponent();
|
|
}
|
|
|
|
#region OptionsPanel Members
|
|
|
|
public void initialize() {
|
|
}
|
|
|
|
public void apply() {
|
|
}
|
|
|
|
public string getDescription() {
|
|
return "About";
|
|
}
|
|
|
|
public event ModifiedEvent PanelModified;
|
|
|
|
#endregion
|
|
|
|
private void i_services_ru_link(object sender, LinkLabelLinkClickedEventArgs e) {
|
|
System.Diagnostics.Process.Start("http://i-services.ru/");
|
|
}
|
|
|
|
private void webim_ru_link(object sender, LinkLabelLinkClickedEventArgs e) {
|
|
System.Diagnostics.Process.Start("http://webim.ru/");
|
|
}
|
|
}
|
|
}
|