I want to develop some custom component just like Apache Flex does. Hope someone can guide me through.
A simple test as follows, but it seems that the label is not applied…
Main.ux
<App>
<CustomButton label="Some Label" />
</App>
CustomButton.ux
<CustomButtonClass>
<Text
Value="{label}"
TextColor="#999999"
/>
</CustomButtonClass>
CustomButtonClass.uno
using Fuse.Controls;
public class CustomButtonClass : Panel
{
public string label {get; set;}
}