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 ButtonForm:ButtonExpand
    {
       public ButtonForm()
           : base(LYFZ.ComponentLibrary.GetUIResources.btn_Form)
       {
           this.BackImg = LYFZ.ComponentLibrary.GetUIResources.btn_Form;
           this.IsShowText = true;
           this.Width = 85;
           this.Height = 28;
       }
     
    }
}