Pregunta

So I'm trying to improve the functionality on a text box, by adding a 'text' style input scope on this occasion, later I will need to add a 'currency' inputscope.

I'm using EB4 as its easier to get direct access to contents within a stack panel, however I keep getting greeted with various errors, even after I follow Bob Tabors Tutorial ( http://channel9.msdn.com/Series/Windows-Phone-7-Development-for-Absolute-Beginners/Adding-Different-Input-Scopes)

See screenshot:

Screenshoot

¿Fue útil?

Solución

I don't know anything about WP7 input scopes but regarding the error in the screenshot it's due to an invalid closing tag :

<TextBox x:Name="NameTb">
    ...
<TextBox x:Name="NameTb"/>

Should be

<TextBox x:Name="NameTb">
    ...
</TextBox>
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top