Advanced Forum Search Results
-
I've noticed an issue in Silverlight 2 in which dynamically setting a tooltip (via the static ToolTipService methods) will erase any Style applied to the tooltip.
It was a problem in SL beta 2 and continues to be an issue in the release bits...
Any thoughts?
-
Is it possible to set the style of a tooltip in C#?
I have some XAML that looks like:
<Button x:Name="myButton" >
<ToolTipService.ToolTip>
<ToolTip Style="{StaticResource myToolTipStyle}" Content="This is a button"/>
</ToolTipService.ToolTip>
</Button>
Say, in code, I ...
-
Try setting the Visibility property on the slider itself to be 'Collapsed' and then explicitly set it to be 'Visible' when you "enable" the panel/slider (whatever you do when the user selects an object on the canvas). Make sure you are setting Visible/Collapsed on the parent elements properly as well.
As far as I could ...
-
You can delete this post. Sorry!
-
Fixed the link, Yi-Lun.
Thanks for checking it out.
-
Figured out a workaround:
In XAML, explicitly set Visibility = Visibility.Collapsed on the slider that's in the volumePopout grid (which itself IS explicitly set collapsed). Then, before I animate in, set the slider to be visible.
Is the 'Collapsed' property "propogated" to children correctly (at all?). Did this ...
-
http://www.agilesports.com/files/SliderBug.zip
I'd appreciate if someone at MS looked at this.
Launch it and click the timelineSlider anywhere to crash.
-
O.K., I've got a solution which repro's this issue (it's not exactly my setup because there isn't a button to do the animation in/out of the slider).
I'll post it in a second.
I think the crash might have to do with the fact that I animate my volume popout "outside" of the boundaries of the control...is that a ...
-
I wish it were that easy :D. It has nothing to do with animation from what I can see.
It crashes when you click on *ANOTHER* slider in the application BEFORE the "speaker" button is clicked.
I set some breakpoints and the last thing that happens (as far as I can see) before the crash is the ValueChanged event is fired on the ...
-
I don't think that's the issue:I checked my whole app for every 'ControlTemplate' and 'Style'. All had correct values of TargetType ("Button", "Slider", "RepeatButton", "Thumb", etc.).Everything works perfectly if you just open the volume slider BEFORE you click the ...