mirror of
https://github.com/Mibew/design.git
synced 2025-04-09 06:10:13 +03:00
Update links to an actual mibew domain in Mibew Tray application (thanks to Nemesis0one)
51 lines
1.2 KiB
C#
51 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using System.Resources;
|
|
|
|
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";
|
|
}
|
|
|
|
#endregion
|
|
|
|
private void i_services_ru_link(object sender, LinkLabelLinkClickedEventArgs e) {
|
|
System.Diagnostics.Process.Start("http://mibew.org/");
|
|
}
|
|
|
|
private void webim_ru_link(object sender, LinkLabelLinkClickedEventArgs e) {
|
|
System.Diagnostics.Process.Start("http://mibew.org/");
|
|
}
|
|
|
|
public event ModifiedEvent PanelModified;
|
|
|
|
private void About_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
{
|
|
System.Diagnostics.Process.Start("http://mibew.org/forums/");
|
|
}
|
|
}
|
|
}
|