5
votes
2answers
947 views
Setting a property with an EventTrigger
I want to be able to set a property with an EventTrigger, there's a number of problems with this.
1) EventTriggers only support Actions, so I must use a storyBoard to set my properties.
2) Once I …
3
votes
3answers
109 views
jQuery activate a mouseover function only if the mouse holds on the element
Hi,
I would like to activate a .mouseover function only if the mouse lays down on the "trigger" element for a predetermined duration (e.g. 500 milliseconds).
E.g.
$('.featured').mouseover(function …
3
votes
2answers
1k views
Fading out a wpf window on close
Hi,
I want to fade a window in/out in my application. Fading in occurs on Window.Loaded and I wanted to fade out on close (Window.Closed or Window.Closing). Fading in works perfectly but a …
3
votes
3answers
4k views
How to open a WPF Popup when another control is clicked, using XAML markup only?
I've got two controls, a TextBlock and a PopUp. When the user clicks (MouseDown) on the textblock, I want to display the popup. I would think that I could do this with an EventTrigger on the Popup, …
2
votes
1answer
417 views
WPF — why isn’t this EventTrigger working?
I'm trying to get one style going that performs all of my triggers. This is what I have, but the SoundPlayerAction is not firing:
<Style x:Key="{x:Type ListBoxItem}" TargetType="ListBoxItem">
…
2
votes
2answers
94 views
How to: Create reminders that should trigger an event to be handled in a Windows application?
Hello all.
I need to develop a windows application with .NET 3.5 that needs to have a calendar and user can schedule appointments.
I want (not with a windows-service) that while the application is …
2
votes
2answers
1k views
WPF - How can I selectively set the “Visibility” of a TabItem via DataBinding/Triggers
I have a tab page that should be hidden if a property (BlahType) is set to 1 and shown if set to 0. This is what I WANT to do:
<TabItem Header="Blah">
<TabItem.Triggers>
…
1
vote
0answers
99 views
Problem with EventTrigger for MouseUp, it triggers only on right-button
Please take a look at the following snippet:
<EventTrigger RoutedEvent="Image.MouseUp">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation
…
1
vote
1answer
132 views
XAML Binding.UpdateSourceTrigger when a Button.Click is fired?
Hi
I want to set the UpdateSourceTrigger to an event of a control:
<TextBox Text="{Binding Field, UpdateSourceMode=btnOK.Click}">
<Button Name="btnOK">
<Button.Triggers>
…
0
votes
1answer
27 views
Translate XAML EventTrigger to C# Code..
Can anyone tell me how this would look like in C#?
<EventTrigger RoutedEvent="Button.Click" SourceName="btnSplit">
<EventTrigger.Actions>
…
0
votes
3answers
119 views
WPF: how to fire an EventTrigger (or Animation) when binding changes?
We have a simple animation that runs when a ToggleButton is checked and unchecked (expands a ListView's height and then collapses a ListView's height). How do you fire the EventTrigger (or Animation) …
0
votes
1answer
17 views
Inherited style throwing an InvalidOperationException when executing a PauseStoryBoard action
The XAML below does the following: when the mouse is over a textblock, its text will enlarge, when the mouse leaves the textblock its text shrinks. When the mouse is clicked the textsize freezes.
…
0
votes
2answers
2k views
WPF EventTriggers - Cannot convert string ‘MouseEnter’ in attribute ‘RoutedEvent’ to object of type ‘System.Windows.RoutedEvent’
I can't get any event triggers to work. A simplified example of what I'm doing is below -
<Window x:Name="win" x:Class="EventTriggers.Window1"
…
0
votes
1answer
463 views
Can you use routed events with a MultiTrigger?
Does WPF support using a triggers that respond to routed events but only given a condition is met?
For example, WPF supports triggering on routed events through Event Triggers.
ie:
<Button>
…
