2007-11-14 01:23:27 +03:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel;
|
|
|
|
using System.Drawing;
|
|
|
|
using System.Data;
|
|
|
|
using System.Text;
|
|
|
|
using System.Windows.Forms;
|
2008-05-18 17:40:19 +04:00
|
|
|
using System.Resources;
|
2007-11-14 01:23:27 +03:00
|
|
|
|
|
|
|
namespace webImTray {
|
|
|
|
public partial class OptionsSoundsPanel : UserControl, OptionsPanel {
|
2008-05-18 17:40:19 +04:00
|
|
|
public event ModifiedEvent PanelModified;
|
|
|
|
|
2007-11-14 01:23:27 +03:00
|
|
|
public OptionsSoundsPanel() {
|
|
|
|
InitializeComponent();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void OptionsSoundsPanel_Load(object sender, EventArgs e) {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionsPanel.apply() {
|
|
|
|
}
|
|
|
|
|
|
|
|
void OptionsPanel.initialize() {
|
|
|
|
}
|
|
|
|
|
2009-05-27 15:46:52 +04:00
|
|
|
string OptionsPanel.getDescription() {
|
|
|
|
return "Sound";
|
2008-05-18 17:40:19 +04:00
|
|
|
}
|
2007-11-14 01:23:27 +03:00
|
|
|
}
|
|
|
|
}
|