From 3570859bf41d7636758ffc1d7ad32cddda42d5ec Mon Sep 17 00:00:00 2001 From: "Valeriano A.R" Date: Wed, 3 Jun 2015 00:36:31 +0200 Subject: [PATCH] CButton --- Scrummer/Code/Controls/CButton.cs | 16 ++++++++++++++++ Scrummer/Scrummer.csproj | 1 + 2 files changed, 17 insertions(+) create mode 100644 Scrummer/Code/Controls/CButton.cs diff --git a/Scrummer/Code/Controls/CButton.cs b/Scrummer/Code/Controls/CButton.cs new file mode 100644 index 0000000..8abee23 --- /dev/null +++ b/Scrummer/Code/Controls/CButton.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.UI.WebControls; + +namespace Scrummer.Code.Controls +{ + public class CButton : Button + { + public CButton() + { + CssClass = "button"; + } + } +} \ No newline at end of file diff --git a/Scrummer/Scrummer.csproj b/Scrummer/Scrummer.csproj index 9481cc2..fe4726b 100644 --- a/Scrummer/Scrummer.csproj +++ b/Scrummer/Scrummer.csproj @@ -66,6 +66,7 @@ +