SilverlightShow: Tip: There is no Label control in Silverlight, what should I use instead? Comments http://www.silverlightshow.net/ Silverlight articles, Silverlight tutorials, Silverlight videos, Silverlight samples SilverlightShow.net http://www.rssboard.org/rss-specification Argotic Syndication Framework 2008.0.2.0, http://www.codeplex.com/Argotic en-US estoychev@completit.com (Emil Stoychev) RE: Tip: There is no Label control in Silverlight, what should I use instead? Its available in silverlight toolkit. Jst download and install http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx#comment5573 priya http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx Thu, 24 Feb 2011 09:19:40 GMT RE: Tip: There is no Label control in Silverlight, what should I use instead? <p>Namespace: <br /> xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk" </p> <p>Code for xaml:<br /> <sdk:Label FontWeight="Bold" FontFamily="Calibri" Content="Your Text" /></p> <p> </p> <p>for example...</p> http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx#comment5248 carmo http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx Thu, 06 Jan 2011 16:48:38 GMT RE: Tip: There is no Label control in Silverlight, what should I use instead? <p>Dudes, It's very easy to do this!))</p> <p>There's a control like ContentPresenter.. use it :p smth like:<br /> <div style="border: 1px solid #7f9db9; overflow-y: auto;" class="reCodeBlock"> <div style="background-color: #ffffff;"><span style="margin-left: 0px ! important;"><code style="color: #000000;">ContentPresenter label = </code><code style="color: #006699; font-weight: bold;">new</code> <code style="color: #000000;">ContentPresenter();</code></span></div> <div style="background-color: #f8f8f8;"><span style="margin-left: 0px ! important;"><code style="color: #000000;">label.Content = </code><code style="color: blue;">"The text you wanna show"</code><code style="color: #000000;">;</code></span></div> </div> </p> <p> or in XAML:</p> <p><ContentPresenter x:Name="label" Content="<span style="margin-left: 0px ! important;"><code style="color: blue;">The text you wanna show"</code><code style="color: #000000;"></code></span> /></p> <p> if I help you I will be thanks for a little sum of money even if it will be 1 dollar.</p> <p>you can thanks me with webmoney system WMZ: Z209580240366</p> <p>Good luck, </p> <p>TcD</p> http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx#comment3732 TcD http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx Sat, 05 Jun 2010 15:48:43 GMT RE: Tip: There is no Label control in Silverlight, what should I use instead? <p>Dudes, It's very easy to do this!))</p> <p>There's a control like ContentPresenter.. use it :p smth like:<br /> <div style="border: 1px solid #7f9db9; overflow-y: auto;" class="reCodeBlock"> <div style="background-color: #ffffff;"><span style="margin-left: 0px ! important;"><code style="color: #000000;">ContentPresenter label = </code><code style="color: #006699; font-weight: bold;">new</code> <code style="color: #000000;">ContentPresenter();</code></span></div> <div style="background-color: #f8f8f8;"><span style="margin-left: 0px ! important;"><code style="color: #000000;">label.Content = </code><code style="color: blue;">"The text you wanna show"</code><code style="color: #000000;">;</code></span></div> </div> </p> <p> or in XAML:</p> <p><ContentPresenter x:Name="label" Content="<span style="margin-left: 0px ! important;"><code style="color: blue;">The text you wanna show"</code><code style="color: #000000;"></code></span> /></p> <p> if I help you I will be thanks for a little sum of money even if it will be 1 dollar.</p> <p>you can thanks me with webmoney system WMZ: Z209580240366</p> <p>Good luck, </p> <p>TcD</p> http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx#comment3730 TcD http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx Sat, 05 Jun 2010 14:19:01 GMT RE: Tip: There is no Label control in Silverlight, what should I use instead? What property keeps the user from typing in it? http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx#comment2386 andy http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx Mon, 21 Sep 2009 21:36:57 GMT RE: Tip: There is no Label control in Silverlight, what should I use instead? What property keeps the user from typing in it? http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx#comment2385 andy http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx Mon, 21 Sep 2009 20:34:30 GMT RE: Tip: There is no Label control in Silverlight, what should I use instead? <p>Hi anon,</p> <p>Yes this is just a textblock with the word Active in it, but there is no other control that is closer to the standard label control.<br /> However the release of the Silverlight Control Toolkit contains control named Label and it can be used instead of the TextBlock. You can find more information about the Silverlight Control Toolkit <a href="http://www.silverlightshow.net/items/Silverlight-Toolkit-Overview.aspx">here</a>.</p> http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx#comment644 iiordanov http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx Mon, 10 Nov 2008 02:09:15 GMT RE: Tip: There is no Label control in Silverlight, what should I use instead? <p>how is this a label??</p> <p>isnt this just a textblock with the word Active??</p> http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx#comment641 anon http://www.silverlightshow.net/items/There-is-no-Label-control-in-Silverlight-what-should-I-use-instead.aspx Fri, 07 Nov 2008 16:46:48 GMT