Advanced Forum Search Results
-
I know I'm a little late to this party (like a year), but this is still showing up on Google, so I thought I'd toss a note in...
I've put up a blog post on this:
Mask Animations (Clipping Path Animations) In Silverlight Without a Line of Code
I walk through how to create a mask animation completely inside of Blend
-
[quote user="Timmy G"]
I'm also having this problem; for me no keyboard input is accepted in the textbox or password box control. I've tried setting windowless=false but that makes the settings and close buttons that appear for all gadgets disappear so that's a dead end too. Setting the size of the object element ...
-
The problem is that I have my Slider control as part of a larger control and I want something to happen when that larger control gets clicked on (when the MouseLeftButtonUp event is fired). Right now, I can click anywhere in my larger control except on the Slider.
The fact that the slider is the exception to the rule makes for a ...
-
I've been working on a project in which the slider control plays a major part and I can't seem to get the slider to respond to the MouseLeftButtonUp or MouseLeftButtonDown events. Any kind of left clicking on the slider will not fire off those events.
Here's an example:
<Slider x:Name="MySlider" ...
-
Try this:
Give your Buttons a MouseEnter and a MouseLeave Event method
<Button MouseEnter="RaiseZIndex" MouseLeave="lowerZIndex"/>
The following code worked for me:
private void RaiseZIndex(object sender, MouseEventArgs e)
{
Button holderBtn = (Button)sender;
holderBtn.SetValue(Canvas.ZIndexProperty, 50); ...
-
Correct me if my understanding if faulty, but I'm not talking about sending the Bluetooth stream over the internet or magically sending a wireless radio protocol through a network. I'm talking about collecting it from the target computer as a device (as you would collect information from a webcam) and processing the information via C# in ...
-
This is probably an obvious "No", but I thought I'd toss it out there anyway...
Is there anyway to channel a Bluetooth stream to be read by a Silverlight application? I've found nothing on it so far... just a couple of thoughts about Silverlight mobile. I'm looking at a Bluetooth stream processing through the ...