This commit is contained in:
2015-06-03 00:36:31 +02:00
parent a893750a29
commit 3570859bf4
2 changed files with 17 additions and 0 deletions

View File

@@ -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";
}
}
}

View File

@@ -66,6 +66,7 @@
<ItemGroup> <ItemGroup>
<Compile Include="Code\Bundler.cs" /> <Compile Include="Code\Bundler.cs" />
<Compile Include="Code\BusinessLogic\MessageBoard.cs" /> <Compile Include="Code\BusinessLogic\MessageBoard.cs" />
<Compile Include="Code\Controls\CButton.cs" />
<Compile Include="Code\Controls\ChatControl.cs" /> <Compile Include="Code\Controls\ChatControl.cs" />
<Compile Include="Code\Controls\ChatHandler.cs" /> <Compile Include="Code\Controls\ChatHandler.cs" />
<Compile Include="Code\Controls\CLabel.cs" /> <Compile Include="Code\Controls\CLabel.cs" />