While working on RIA Services and Silverlight you might get an error like this: Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; HPNTDF; InfoPath.3; .NET4.0C; .NET4.0E; MS-RTC LM 8) Timestamp: Fri, 18 Feb 2011 18:20:46 […]
Category: Silverlight
January 30, 2011
keithrull
I was working on a prototype application today when I needed to use a BulletList. At first I thought it existed on the toolkit controls but to my surprise it wasn’t so I ended up creating an ItemsControl template that mimics how a BulletList would behave. I wanted to post it here to show you how I […]
Expression Studio 4 is out and my 60-day tool
All about Keith ,Fun Stuff ,Silverlight ,Tech News and IssuesJune 9, 2010
keithrull
I was really excited last Monday after seeing Expression Studio 4 has been released (I have to admit that I’m one of those developers who logged in at MSDN at 12 midnight to check if the RTM bits are already out. hehe). I think this is great news for all XAMLers all over the world. […]
Just Released: Silverlight 4 Tools for VS 2010, new SL themes and WCF RIA Services
.NET ,Release ,Silverlight ,Tech News and Issues ,WCFMay 18, 2010
keithrull
Just in case you missed it, Tim Heuer has announced that Silverlight 4 Tools for Visual Studio 2010, WCF RIA Services and 3 new SL themes have been released today. This is an exciting news for Silverlight aficionados who have been waiting for the RTM version of SL4 Tools since the last RC who are […]
March 9, 2009
keithrull
Tooltips are great additions to any interface and in this article I’m going to show you how to attach a tooltip to control in Silverlight 2. To start, let’s assume that we have a button that we want to add a tooltip to: [XAML]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<SPAN style="FONT-SIZE: 11px; COLOR: black; FONT-FAMILY: Courier New; BACKGROUND-COLOR: transparent"><FONT color=#ff0000><UserControl x:Class=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"KeithRull.Silverlight.CreatingTooltips.Page"</SPAN> xmlns=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"http://schemas.microsoft.com/winfx/2006/xaml/presentation"</SPAN> xmlns:x=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"http://schemas.microsoft.com/winfx/2006/xaml"</SPAN> Width=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"400"</SPAN> Height=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"300"</SPAN>> <Grid x:Name=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"LayoutRoot"</SPAN> Background=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"#FF1E238E"</SPAN>> <Button Content=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"Hover over me!"</SPAN> Height=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"20"</SPAN> Width=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"100"</SPAN> Margin=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"30 40"</SPAN> VerticalAlignment=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"Top"</SPAN> HorizontalAlignment=<SPAN style="FONT-SIZE: 11px; COLOR: #666666; FONT-FAMILY: Courier New; BACKGROUND-COLOR: #e4e4e4">"Left"</SPAN>> </Button> </Grid> </UserControl></FONT></SPAN> |
[Rendered UI] In order or us to attach a tooltip to […]
My MIX09 10K Contest Entry: Silverlight Pregnancy Calendar
.NET ,All about Keith ,Contest ,Family ,Fun Stuff ,Pregnancy ,Silverlight ,Tutorial ,WCF ,WPFJanuary 8, 2009
keithrull
I had some free time during the holidays and saw at the MIX09 website that they have a contest entitled MIX09 10K Challenge where they ask participant to create a web application that is either using Microsoft® Silverlight™ or Windows Presentation Foundation, as a XAML Browser Application running in Partial Trust or as a ClickOnce application in 10 kilobytes or […]