Skip to content

Instantly share code, notes, and snippets.

@LSTANCZYK
Created October 17, 2014 15:09
Show Gist options
  • Save LSTANCZYK/29bfb13d6908c673627b to your computer and use it in GitHub Desktop.
Save LSTANCZYK/29bfb13d6908c673627b to your computer and use it in GitHub Desktop.
DevExpress eXpressApp Framework (XAF) - Extension property with drop-down list
public interface IModelExDatabaseColumn : IModelColumn
{
[Category("Data")]
[Required]
string DatabaseColumn { get; set; }
}
public override void ExtendModelInterfaces(ModelInterfaceExtenders extenders)
{
base.ExtendModelInterfaces(extenders);
extenders.Add<IModelColumn, IModelExDatabaseColumn>();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment