changeset 13:ac5dc16fba1f

Re #29: Create IBBRadioButton for WinForms * Add IBBRadioButton (just needs a marker interface)
author IBBoard <dev@ibboard.co.uk>
date Mon, 22 Mar 2010 20:56:09 +0000
parents 7274f305eb49
children 774fd3daefe1
files IBBoard.Windows.Forms.csproj Windows/Forms/IBBRadioButton.cs
diffstat 2 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/IBBoard.Windows.Forms.csproj	Tue Mar 09 21:00:42 2010 +0000
+++ b/IBBoard.Windows.Forms.csproj	Mon Mar 22 20:56:09 2010 +0000
@@ -76,6 +76,9 @@
     <Compile Include="AssemblyInfo.cs">
       <SubType>Code</SubType>
     </Compile>
+    <Compile Include="Windows\Forms\IBBRadioButton.cs">
+      <SubType>Component</SubType>
+    </Compile>
     <Compile Include="Windows\Forms\ColorableStatusBar.cs">
       <SubType>Component</SubType>
     </Compile>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Windows/Forms/IBBRadioButton.cs	Mon Mar 22 20:56:09 2010 +0000
@@ -0,0 +1,10 @@
+using System.Windows.Forms;
+using IBBoard.Lang;
+
+namespace IBBoard.Windows.Forms
+{
+	public class IBBRadioButton : RadioButton, ITranslatable
+	{
+		//Marker class for translatable radio buttons
+	}
+}