Categories
7.0 7.5 C#.NET HOW TO Microsoft Nokia VB.NET Visual Studio Windows Phone

HOW TO set Nokia Blue color

The Nokia Blue color is #004C9A in Hexadecimal.

Nokia Blue Color

If you want to use it to set Grid Background color you can use the following code:

[sourcecode lang=”vb”]
LayoutRoot.Background = New SolidColorBrush(Color.FromArgb(255, 0, 76, 154))
[/sourcecode]

Did my HOW TO help you? Leave a reply.

Categories
7.0 7.5 HOW TO Microsoft Visual Studio Windows Phone

HOW TO set TextBox.InputScope property

In XAML, for example, to set the InputScope property to Number:

[sourcecode lang=”xml”]
<TextBox Name="myTextBox">
<TextBox.InputScope>
<InputScope>
<InputScopeName NameValue="Number"/>
</InputScope>
</TextBox.InputScope>
</TextBox>
[/sourcecode]

Did my HOW TO help you? Leave a reply.