Monday, October 20, 2008

Just remember if you run into a control that does not support ToolTipService(). ToolTip you can always create a invisible boarder around the control.  And you can use that border to display your tool tip.

posted by Aaron Fischer on Monday, October 20, 2008 11:14:39 AM (Pacific Standard Time, UTC-08:00)   #    Comments [0]
 Thursday, October 02, 2008
From the channel nine screen cast Silverlight - Handling HTML Events in .NET Code by Mike Taulty
 
Void OnLoaded (object sender, RoutedEventArgs e)
{
    HtmlElement element =
        HtmlPage.Document.GetElementById("MyButton");
    element.AttachEvent("onclick", (EventHandler)MyHandler);
}
void MyHandler( object sender, EventArgs args)
{
    //Do something.
}
posted by Aaron Fischer on Thursday, October 02, 2008 9:19:01 AM (Pacific Standard Time, UTC-08:00)   #    Comments [0]