DevExpress XAF (eXpressApp) extension framework. ๐น๐ถ๐ป๐ธ๐ฒ๐ฑ๐ถ๐ป.๐ฒ๐ ๐ฝ๐ฎ๐ป๐ฑ๐ณ๐ฟ๐ฎ๐บ๐ฒ๐๐ผ๐ฟ๐ธ.๐ฐ๐ผ๐บ, ๐๐ผ๐๐๐๐ฏ๐ฒ.๐ฒ๐ ๐ฝ๐ฎ๐ป๐ฑ๐ณ๐ฟ๐ฎ๐บ๐ฒ๐๐ผ๐ฟ๐ธ.๐ฐ๐ผ๐บ and ๐๐๐ถ๐๐๐ฒ๐ฟ @๐ฒ๐ ๐ฝ๐ฎ๐ป๐ฑ๐ณ๐ฟ๐ฎ๐บ๐ฒ๐๐ผ๐ฟ๐ธ and or simply ๐ฆ๐๐ฎ๐ฟ/๐๐ฎ๐๐ฐ๐ต this repository and get notified from ๐๐ถ๐๐๐๐ฏ
I want to display a CardView list in an XAF Project, i noticed that the XVideoRental Demo use the LayoutViewListEditor to achieve this task.
I tried to use the Common.Win module of the demo project but it has a System.NullReferenceExceptionย when we close to designer in design time or runtime, the bug is related to the following method
protected object PropertyDefaultValue(object value, ModelNode node, PropertyDescriptor propertyDescriptor, ModelValueInfo valueInfo, object component) {
var defaultValueAttribute = propertyDescriptor.Attributes.OfType<DefaultValueAttribute>().FirstOrDefault();
if (defaultValueAttribute == null) {
if (propertyDescriptor.PropertyType.IsStruct())
return Activator.CreateInstance(propertyDescriptor.PropertyType);
} else if (defaultValueAttribute.Value.Equals(propertyDescriptor.GetValue(component))) {
return null;
}
return NodeRealValueCore(valueInfo, node);
}
In the ModelSynchronizer class.
How it is possible to use LayoutViewListEditor directly as part of an xpand module ?
I want to display a CardView list in an XAF Project, i noticed that the XVideoRental Demo use the LayoutViewListEditor to achieve this task.
I tried to use the Common.Win module of the demo project but it has a System.NullReferenceExceptionย when we close to designer in design time or runtime, the bug is related to the following method
In the ModelSynchronizer class.
How it is possible to use LayoutViewListEditor directly as part of an xpand module ?