using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.ComponentModel;
namespace LYFZ.ComponentLibrary
{
   public class ButtonEx:ButtonExpand
    {
       public ButtonEx()
           : base(LYFZ.ComponentLibrary.GetUIResources.btn_save)
       {
           this.BackImg = LYFZ.ComponentLibrary.GetUIResources.btn_save;
           this.IsShowText = true;
           this.Width = 85;
           this.Height = 28;
       }
     
    }
}