svn path=/trunk/winforms-tools/; revision=44541
This commit is contained in:
Alexander Olk 2005-05-15 15:07:36 +00:00
Родитель 02e45edc2c
Коммит 15a210962b
2 изменённых файлов: 0 добавлений и 37 удалений

Просмотреть файл

@ -1,24 +0,0 @@
using System;
using System.Drawing;
namespace MWFResourceEditor
{
public struct ContentStruct
{
public Image image;
public string text;
public ContentType ctype;
public ContentStruct Clone( )
{
return (ContentStruct)MemberwiseClone( );
}
}
}

Просмотреть файл

@ -1,13 +0,0 @@
using System;
namespace MWFResourceEditor
{
public enum ContentType
{
TypeImage,
TypeString,
TypeByte
}
}