Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
588 views

WPF Trigger when Property and Data value are true

I need to be able to change the style of a control when a property and data value are true. For example, my bound data has an IsDirty property. I would like to change the background color of my ...
2
votes
1answer
3k views

WPF TextBox.Text with MultiBinding

I've got Custom Control with a TextBox in the default Template. The Custom Control has these 2 dependency properties (among others): SelectedValue, NullText (text to appear in the TextBox when ...
2
votes
0answers
2k views

WPF - MultiTrigger in ControlTemplate, strange behaviour

Okay, I've not done much WPF lately and this is confusing me. I have a Style defined for RadioButton, which uses a ControlTemplate with a MultiTrigger. The gist is that I want a Border to become ...
1
vote
1answer
289 views

WPF Windows Presentation Foundation Animation using MultiTrigger

I am trying to get the hang of how to do animations using WPF XAML. I'm struggeling to get my animation to trigger based on the right conditions and now I need some help. Just for laughs I want to ...
1
vote
1answer
122 views

MultiTrigger executes only once

My button is supposed to change colour after certain amount of mouse overs, however Multibinding doesn't work properly. Buttons in my application has the following style: <Style ...
1
vote
1answer
228 views

How to use MultiDataTrigger to check a single condition to be true in Style.Triggers in WPF?

I have three grids in my UserControl of which one control is shown at time. In the last column I need to use a Style where I need to check the data and apply a ForeGround color. I can write style at ...
1
vote
1answer
553 views

MultiDataTrigger Binding to Collection and To a property within the collection

I have the following XAML: <Style.Triggers> <MultiDataTrigger> <MultiDataTrigger.Conditions> <Condition Binding="{Binding Path=Errors, Converter={StaticResource ...
1
vote
1answer
197 views

xaml: Is there a method to implement OR logic in multiple triggers?

I want the Role to be either TopLevelHeader OR TopLevelItem as well as IsPressed. Is this possible without specifying two MultiTriggers? <MultiTrigger> <MultiTrigger.Conditions> ...
1
vote
0answers
123 views

Trigger seems not to fire, what am i doing wrong?

I have enter actions defined for two triggers as such: <Trigger Property="ToggleButton.IsMouseOver" Value="true"> <Trigger.EnterActions> <BeginStoryboard ...
1
vote
1answer
347 views

WPF MutiDataTrigger not firing setter

I'm trying to use MultiDataTriggers to enabled/disable a button based on the value of two text boxes. The docs state that the conditions in a MultiDataTrigger are logically ANDed together. In the ...
1
vote
1answer
971 views

SourceName with MultiTriggers

Is it possible to use a MultiTrigger to evaluate properties on multiple elements? That don't reside within a template, but are within the Usercontrol/Window. Example: <CheckBox ...
1
vote
1answer
703 views

Can you swap VisualStateManager for MultiTrigger in WPF?

This really relates to creating a library that works across both WPF and Silverlight. The WPF Toolkit includes an implementation of the VisualStateManager included with Silverlight, and if the ...
0
votes
3answers
43 views

How to settle textblock visibility as collapsed by default…and toggle based on conditions?

I have a textblock - which is collapsed by default...and will be visible only when it meet two conditions. I have the below xaml for same. But it is not working as expected. Any help would be ...
0
votes
2answers
120 views

Grails - Parameter in a Quartz job Trigger

I have the following quartz job, set via Quartz-plugin: class UserMonthlyNotificationJob { static triggers = { cron name:'dailyTrigger', cronExpression: " ... " cron ...
0
votes
1answer
979 views

WPF: Condition Binding versus Property, XamlParseException using either

I'm having trouble with a Condition for a MultiTrigger. If I do the following: <Condition Binding="{Binding RelativeSource={RelativeSource AncestorType={x:Type ListView}}}" ...
0
votes
1answer
208 views

MultiDataTriggers and VisualState

I am trying to create a menu system which changes the content template for a panel AFTER the panel has been closed by a Visual State change but before the panel is re-opened (think of a slide in/out ...