Skip to content

Instantly share code, notes, and snippets.

@ArveSystad
Created May 5, 2014 11:28
Show Gist options
  • Save ArveSystad/a81af4155b00966aed8b to your computer and use it in GitHub Desktop.
Save ArveSystad/a81af4155b00966aed8b to your computer and use it in GitHub Desktop.
public class FileIconDescriptor<T> : UIDescriptor<T> where T : ContentData
{
public FileIconDescriptor()
{
Type type = GetType();
string fileTypeName = type.BaseType.GetGenericArguments()[0].Name;
IconClass = fileTypeName.Replace("File", "").ToLower() + "Icon";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment