전자실메일양식 통일 및 정리 작업
This commit is contained in:
@@ -1,35 +0,0 @@
|
||||
using System;
|
||||
using System.Drawing;
|
||||
using System.Windows.Forms;
|
||||
using YARTE.Properties;
|
||||
|
||||
namespace YARTE.UI.Buttons
|
||||
{
|
||||
public class ItalicButton : IHTMLEditorButton
|
||||
{
|
||||
public void IconClicked(HTMLEditorButtonArgs args)
|
||||
{
|
||||
args.Document.ExecCommand("Italic", false, null);
|
||||
}
|
||||
|
||||
public Image IconImage
|
||||
{
|
||||
get { return Resources.italic; }
|
||||
}
|
||||
|
||||
public string IconName
|
||||
{
|
||||
get { return "Italic"; }
|
||||
}
|
||||
|
||||
public string IconTooltip
|
||||
{
|
||||
get { return "Italic"; }
|
||||
}
|
||||
|
||||
public string CommandIdentifier
|
||||
{
|
||||
get { return "Italic"; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user