We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently, the text is not using TemplateBinding to bind Title property. which is always display as "user"
<UserControl.Styles> <Style Selector="formFields|FormFieldNumberPicker"> <Setter Property="Template"> <ControlTemplate> <Grid Height="47"> <TextBlock FontWeight="DemiBold" HorizontalAlignment="Left" Text="{TemplateBinding Title}" VerticalAlignment="Center" /> <mobileNumberPicker:MobileNumberPicker HorizontalAlignment="Right" Margin="-30,0" Maximum="{TemplateBinding Maximum}" Minimum="{TemplateBinding Minimum}" Value="{TemplateBinding Value, Mode=TwoWay}" VerticalAlignment="Center" /> </Grid> </ControlTemplate> </Setter> </Style> </UserControl.Styles>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
currently, the text is not using TemplateBinding to bind Title property. which is always display as "user"
The text was updated successfully, but these errors were encountered: