Advanced Forum Search Results
-
I'm using Silverlight 3 Beta and that could be the reason but I doubt it. Basically data binding from ObservableCollection in list boxes works fine. As soon as I apply same technique to textblock and bind to a string from the same source class I get only initial value (whatever that string was assigned in the constructor) and that's it - ...
-
Thanks, so do I understand correctly that I can't ask Windows Live to give me just an email address of the person who just authenticed to my system with Live Id WebAuth? Can I do it without creating a web service?
-
How do I get Live ID of authenticated user in Silverlight? There's an excellent post on this in http://silverlight.net/forums/p/16876/56633.aspx#56633 but it stops short of providing an answer on the question above - I can get a token in Silverlight app but then what? How do I display even an email address of the person loggen in, not to ...
-
I beg to disagree with you on last point Ling. Flash does use right-click pretty well - it allows you to add custom menu items to its context menu and yes that value is available on Mac - it's just Ctrl-click not right-click, which is also unavailable in Silverlight.
-
Is it even theoretically feasible to enable mouse right-click handling with windowless=false ? Every sample I've seen so far requires windowless mode, but then there are multiple limitations that get introduced. Flash seems to have easier model for introducing custom context menus for example tha work in all browsers/platforms. Any ideas on ...
-
Has anyone managed to make right-click working in full-screen mode? Also, is there a cross-browser version of right-click workaround?
-
Are there any examples out there that show how to implement auto-sizing Silverlight objects and work in all supported browsers? That is not from Silverlight perspective but from HTML perspective, so it would shrink every time user shrinks visible portion of the page by resizing browser window.
-
I'm very confused as to why this would happen: when I declare an event handler on the top-level Canvas like this everything works:
<Canvas x:Name="LayoutRoot" MouseLeftButtonDown="contextMenu_MouseLeftButtonDown">
..but when I move this event handler binding one level down in the hierarchy it ...
-
I've been using System.Web.UI.SilverlightControls.Silverlight in SharePoint web part quite a bit and it always worked. As soon as I moved to RTW it stopped producing good client code - now my page doesn't display any Silverlight control in either browser. Here's what I find in the client HTML:
<script ...
-
That's not exactly what I need - I need let's say 2 columns and as many rows as it takes to display a list of arbitrary number of items (similar to Windows Explorer Item List), and each item is the of the same type (defined in another XAML). How do I make it automatically create new columns (if more than 1 item) and new rows (if more than ...