I want to make a composite control that has a grid some labels boxes and an entry
so that I can reuse it in almost all of the entry data points in my app, I have some triggers that handle validation triggerText only allows text to be entered triggerNumbers only allow numbers to be entered etc
I cannot figure out how to tell my composite control to use one trigger or the other
something like this <control:MySuperEntryControl LabelText=”{Bindable mylabelText}” EntryText=”{Bindable myEntryText}” and Something something use this particular trigger />
Any Ideas I can try? It sounds like this would be something very common but I cannot find info on this
tried making a style that handles the trigger to somehow select a style or another, but did not get anywhere