${res:Templates.File.SharpDevelop.SimplePad.Description}
/// Description of the pad content
///
public class ${FileNameWithoutExtension} : AbstractPadContent
{
{
Panel ctl;
///
/// Creates a new ${FileNameWithoutExtension} object
///
public ${FileNameWithoutExtension}()
{
ctl = new Panel();
// TODO: Initialize the panel's content.
}
///
/// The representing the pad
///
public override Control Control {
get {
return ctl;
}
}
///
/// Refreshes the pad
///
public override void RedrawContent()
{
// TODO: Refresh the whole pad control here, renew all resource strings whatever
// Note that you do not need to recreate the control.
}
///
/// Cleans up all used resources
///
public override void Dispose()
{
ctl.Dispose();
base.Dispose();
}
}
}
]]>