Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Label Control in Windows 8 App

Tags:

windows-8

xaml

I am new to windows 8 app development and learning about app development in windows 8. I wanted to know whether there is any label like control available for windows 8 app development?

like image 209
Mansi Desai Avatar asked Oct 21 '12 10:10

Mansi Desai


2 Answers

You can use TextBlock as a label like control.

like image 197
MBZ Avatar answered Nov 30 '22 22:11

MBZ


We have a UI Control that is called TextBlock , its implementation is similar as that of label. You can access its properties as TextBox1.Text="your string";

like image 36
Apoorv Kumar Upadhyay Avatar answered Dec 01 '22 00:12

Apoorv Kumar Upadhyay