Created
October 17, 2014 15:09
-
-
Save LSTANCZYK/29bfb13d6908c673627b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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