tray/src/webimtray/WebIMTray/options/OptionsSoundsPanel.cs
2008-05-18 20:17:16 +00:00

38 lines
1005 B
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 OptionsSoundsPanel : UserControl, OptionsPanel {
public event ModifiedEvent PanelModified;
public OptionsSoundsPanel() {
InitializeComponent();
}
private void OptionsSoundsPanel_Load(object sender, EventArgs e) {
}
void OptionsPanel.apply() {
}
void OptionsPanel.initialize() {
}
string OptionsPanel.getDescription(ResourceManager resManager) {
return resManager.GetString("sound");
}
public void updateUI(ResourceManager resManager) {
groupBox1.Text = resManager.GetString("notifications");
playSoundOnVisitor.Text = resManager.GetString("playSoundOnVisitor");
}
}
}