mirror of
https://github.com/Mibew/mibew.git
synced 2025-02-08 16:51:08 +03:00
32 lines
708 B
C#
32 lines
708 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 OptionsSoundsPanel : UserControl, OptionsPanel {
|
||
|
public OptionsSoundsPanel() {
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
private void OptionsSoundsPanel_Load(object sender, EventArgs e) {
|
||
|
|
||
|
}
|
||
|
|
||
|
void OptionsPanel.apply() {
|
||
|
}
|
||
|
|
||
|
void OptionsPanel.initialize() {
|
||
|
}
|
||
|
|
||
|
string OptionsPanel.getDescription() {
|
||
|
return "Sounds";
|
||
|
}
|
||
|
|
||
|
public event ModifiedEvent PanelModified;
|
||
|
}
|
||
|
}
|