mirror of
https://github.com/Mibew/design.git
synced 2025-04-11 07:10:13 +03:00
git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@81 c66351dc-e62f-0410-b875-e3a5c0b9693f
38 lines
958 B
C#
38 lines
958 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() {
|
|
return "Sounds";
|
|
}
|
|
|
|
public void updateUI(ResourceManager resManager) {
|
|
groupBox1.Text = resManager.GetString("notifications");
|
|
playSoundOnVisitor.Text = resManager.GetString("playSoundOnVisitor");
|
|
}
|
|
}
|
|
}
|