Advanced Forum Search Results
-
I have a canvas with a bunch of UserControls which are basically rectangles on it. These rectangles can be resized with the mouse. Each rectangle has mousedown, mouseup, and mousemove events. The mousedown event calls CaptureMouse, and the mouseup event calls ReleaseMouseCapture. (That way, if they drag quickly and the mouse moves off the ...
-
Any chance I can see some sample code for the Windows Media Services plugin?
-
I'm having the same problem - I can't find a way to use Windows Media Services and Silverlight in my web application and require that a user be logged in to the web application for them to access the WMS server.
However - I can use authentication and progressive download over http. (Cutting out Windows Media Services)
I also think it ...
-
I'm having this same problem on silverlight 3. Here's my code:
private bool IsShiftDown { get { return (Keyboard.Modifiers & ModifierKeys.Shift) > 0; } }
private bool IsMultiselectKeyDown
{
get
{
bool CtrlDown = (Keyboard.Modifiers & ModifierKeys.Control) > 0;
bool AppleDown = ...
-
Thanks Johnathan,
So can I download the image at http://go.microsoft.com/fwlink/?LinkId=108181 and put it on my server? I assume that image is freely distributable.
-
Ok, I can check window.location.href to see if it's https, and if so I can change the silverlight download url to be https. However the image, http://go.microsoft.com/fwlink/?LinkId=108181, cannot be changed to https://go.microsoft.com/fwlink/?LinkId=108181 because it's a link to another image.
-
I have a secure webpage with silverlight content on it. If I open the page in IE8 without silverlight installed, I get this warning: "Do you want to view only the webpage content that was delivered securely?" If I click yes, then the install silverlight image doesn't show up. If I then click on the thing that appears in its place, I ...
-
Hm.. I had to set this:
<param name="Windowless" value="True" />
<param name="Background" value="Transparent" />
isWindowless did not work
-
Aha! My Zoom in IE8 was set to 105%. And yet, setting the width/height to these actualwidth, actualheight values doesn't seem to work...
-
When I load up my silverlight app in IE8:
App.Current.Host.Content.ActualWidth is 1255
App.Current.Host.Content.ActualHeight is 507
Then if I hit F12 and select the silverlight object and click the layout tab, it says the dimensions are 1205x487
In IE7, the silverlight app gives these dimensions as ...