Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
4answers
29k views

WPF DataTrigger where value is NOT null?

I know that I can make a setter that checks to see if a value is NULL and do something. Example: <TextBlock> <TextBlock.Style> <Style> <Style.Triggers> ...
14
votes
2answers
9k views

WPF Datatrigger not firing when expected

I have the following XAML: <TextBlock Text="{Binding ElementName=EditListBox, Path=SelectedItems.Count}" Margin="0,0,5,0"/> <TextBlock Text="items selected"> ...
10
votes
1answer
2k views

Can you bind a DataTrigger to an Attached Property?

In WPF, is it possible for a DataTrigger to bind to an attached property? I essentially want to use a converter on an attached property to provide a style when a particular validation rule has been ...
7
votes
4answers
3k views

What is the replacement for DataTrigger in Silverlight

This is my scenario. I have 2 Properties. Type and State. Type is an Enum with 3 values eg, ball, car, arrow. State is an int which would accept 3 state values eg., -1, 0, 1. Also, I have 9 images ...
6
votes
3answers
1k views

define animations and triggers as reusable resource?

Is there a way to define an animation somewhere in xaml (eg. as a resource) once and then reuse it multiple times? I have a lot of independent brushes across differnt datatemplates that independently ...
6
votes
3answers
2k views

WPF Trigger based on Object Type

Is there a way to do a comparison on object type for a trigger? <DataTrigger Binding="{Binding SelectedItem}" Value="SelectedItem's Type"> </DataTrigger> Background: I have a Toolbar ...
5
votes
3answers
178 views

What's the difference between a Trigger and a DataTrigger?

They seem the same. Is there a significant difference? I think I am missing something.
5
votes
1answer
616 views

DataTrigger not firing when property value changes multiple times within a short window

I've found an interesting problem in my WPF app related to a MultiDataTrigger not starting a StoryBoard to animate a data grid cell. I have a WPF data grid control which is bound to an ...
4
votes
3answers
422 views

WPF DataTrigger

I'm working on a board game to get a grip on WPF and I'm stuck after trying the whole night to get this part working. The following code belongs to the 'House' user control and works just fine on the ...
4
votes
2answers
11k views

How to provide multiple conditions for data trigger in WPF?

How to provide multiple conditions for data trigger in WPF?
4
votes
3answers
6k views

WPF Triggers

I'm trying to set a trigger to display a block of text when the value i get for the cell is a certain type. I have successfully managed to display an image in the same situation, but in this ...
3
votes
1answer
204 views

TextBlock trigger instead of using converter

I want to show a number on screen. If that number is 0 I don't want it to show at all. <TextBlock Text="{Binding Path=Class.Count}" FontSize="20" FontWeight="Bold"> ...
3
votes
4answers
532 views

wpf - fire datatrigger when property changes regardless of new value

I'm trying to execute an animation on a cell in a datagrid when the value of the datagrid cell changes. The datagrid itself is bound to an ObservableCollection of plain old CLR objects. In this case ...
3
votes
2answers
129 views

WPF DataTrigger vs .Net Property

I am using MVVM pattern and have a scenario where I need to hide a control based on some functional logic. I have two options to handle it. I can create a boolean property on view model and bind ...
3
votes
1answer
158 views

Is it possible to use Triggers on Grid RowDefinitions?

I have a grid whose rows need to be resized dynamically based on the view model. I'd like to do something like the following: <RowDefinition Height="2*"> ...
3
votes
1answer
188 views

Can you clear a dependency property in a trigger? [closed]

Possible Duplicate: Is it possible to use a setter to return a property to its default value? Ok... I know in code-behind, I can call ClearValue to clear, or 'unset' a dependency property, ...
3
votes
1answer
2k views

How to declare combobox itemTemplate that has Itemsource as Enum Values in WPF?

I have a enum let's say enum MyEnum { FirstImage, SecondImage, ThirdImage, FourthImage }; I have binded this Enum to my combobox in XAML. While defining an combobox I have defined an ...
3
votes
1answer
1k views

WPF: Activate Trigger when a MVVM bound property changes

somehow I am going in circles here. Please forgive me if the answer to this question is obvious. I want to react to changed properties in the ViewModel in the View. When the properties (bool) change ...
3
votes
1answer
2k views

WPF DataTrigger cannot find Trigger Target

<ListBox.ItemTemplate> <DataTemplate> <Grid x:Name="grid"> <Grid.Background> <SolidColorBrush x:Name="backgroundBrush" ...
3
votes
2answers
1k views

Defining DataTrigger for StackPanel

How do I define a DataTrigger for a StackPanel? It does have a Trigger property, but defining a trigger here gives the following error on Initialize when starting the application: Failed object ...
3
votes
1answer
4k views

Using bindings in DataTrigger condition

Let's say I have the following simple classes: public class Person { public int Id { get; set; } public string Name { get; set; } } public class PersonHolder { public Person ...
3
votes
1answer
1k views

WPF: How do I set the Foreground property of a TextBlock using DataTrigger

This is my XAML: <TextBlock Name="SeverityText" Grid.Column="1" Grid.Row="0" Foreground="Red"> <TextBlock.Triggers> <DataTrigger ...
3
votes
2answers
2k views

Unable to set ContentTemplate via DataTrigger

I want the ContentTemplate to vary according to the value in the DataTrigger. And yes, I considered using a DataTemplateSelector, but now I need a DataTrigger or better said a MultiDataTrigger. Please ...
3
votes
1answer
240 views

Is it possible to view effects of data triggers in design in Expression Blend 3?

Blend supports displaying the graphical representation of a style resource, and allows you to select an active property/event trigger to view or modify. However, it's a common occurrence to have ...
3
votes
1answer
966 views

How to determine index of current ListBox item from DataTemplate?

I have a ListBox. Now I want to write a DataTemplate in such way, that the first item will have red background and white background for other items. I guess I need to write a DataTrigger, but I have ...
3
votes
1answer
3k views

How can I toggle a TextBlock's visibility in a DataTrigger?

This code works (when ControlType="dropDown" then the background yellow): <Window x:Class="TestCollapsed.Views.MainView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
3
votes
2answers
4k views

Triggers collection members must be of type EventTrigger

I've created a UserControl, similar to the following: <UserControl> <StackPanel Orientation="Vertical"> <StackPanel x:Name="Launch" Orientation="Horizontal" ...
3
votes
1answer
330 views

How can I override a bound property with a DataTrigger

I've got the following XAML used to display detailed information about an item selected in a list view. I want the rectangle to show the standard info color behind the text except when the selected ...
2
votes
2answers
50 views

ControlTemplate with DataTrigger Vs. DataTemplate with DataTemplateSelector

I have a generic control which displays an editor based on the type property inside a ViewModel. Currently it's implemented using Control, ControlTemplate and DataTriggers like this - <Control ...
2
votes
1answer
284 views

DataTrigger.EnterActions.BeginStoryboard not Beginning

The purpose of this XAML is to animate a ListBox. The Selected ListBoxItem is Zoomed X2 The NotSelected ListBoxItem is Zoomed X.5 When nothing is selected, they are Zoomed X1 However, these ...
2
votes
4answers
193 views

Is it possible to create a generic Int-to-Enum Converter?

I'd like to be able to say <DataTrigger Binding="{Binding SomeIntValue}" Value="{x:Static local:MyEnum.SomeValue}"> and to have it resolve as True if the int value is equal to ...
2
votes
2answers
250 views

TemplateBinding from a Style DataTrigger In ControlTemplate

In the following XAML I'm using a Rectangle with a Border as the Template for a ToggleButton. I want the BorderBrush to be a different colour to reflect the changing value of ToggleButton.IsChecked. ...
2
votes
1answer
214 views

Wpf: setting IsEnabled in code behind breaks Style Trigger

I am having an issue when using a DataTrigger to manipulate the IsEnabled property of a control. Normally it works fine, however when I initialize the IsEnabled state within the View's Initialized ...
2
votes
1answer
188 views

WPF trigger/bindings not working

I'm trying to setup a TextBox subclass that will change its style based on a few different things, and I'm running into two problems. The first Trigger, the VisualBrush one, triggers properly but ...
2
votes
0answers
266 views

Silverlight DataTrigger not firing on load

I'm attempting to convert some of my WPF skills to Silverlight, and have run into a slightly odd problem in the test mini-app I've been working on. In WPF, I got used to using DataTriggers within a ...
2
votes
3answers
46 views

How do I match “newline” in a DataTrigger?

In my XAML, I am trying to implement the folowing: <DataTrigger Binding="{Binding Path=Word}" Value="\n"> but this does not work, even though Word is \n. I suspect that \n is not the right ...
2
votes
3answers
295 views

WPF DataTrigger / DataBinding failing?

EDIT: So, it turns out that it was a problem with the code in the VM (embarrassingly enough checking on a property that always returned true [after a refactoring session] ) - I'd kind of assumed that ...
2
votes
1answer
784 views

WPF Data Trigger not working - ComboBox selected index is not getting set to 0

I want to set the SelectedIndex of ComboBox to 0 when the SelectedItem it is bound to is null by using DataTrigger. But it is not working. Where am I going wrong? The xaml is as follows: ...
2
votes
1answer
523 views

How to Use DataTrigger to set a property defined in the ViewModel in WPF

I am writing a XAML file which use DataTrigger to set a property in the ViewModel. The ViewModel class defined as: public class ShellModel : INotifyPropertyChanged { public Brush ...
2
votes
1answer
536 views

WPF Animation with datatriggers

I have a rectangle which I am animating the backround colour of. It should change to green each time a particular number goes up. And red when it goes dowm. If the number doesn't change for a while ...
2
votes
2answers
968 views

Cannot find source for binding with reference

I want to bind my MultiDataTrigger.Conditions to radio button, but it's not working. here is my scenario. In wpf, I have a GridPanel, which suppose to have radiobuttons in it. I generate dynamic ...
2
votes
4answers
660 views

Switch (Select) statement in Xaml Binding?

Is there a way to create a conditional binding in XAML? Example: <Window x:Name="Me" DataContext="{Binding ElementName=Me}"> <TextBlock> <TextBlock.Text> ...
2
votes
1answer
1k views

WPF Style datatrigger on Border background

I have the border below. Why would the Foreground of my TextBlock work correctly but the Background of the border always stay the same (as if the IsDeleted property is always false) <Border ...
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
2k views

WPF Toolkit DataGridCell Style DataTrigger

I am trying to change the color of a cell to Yellow if the value has been updated in the DataGrid. My XAML: <toolkit:DataGrid x:Name="TheGrid" ItemsSource="{Binding}" ...
2
votes
2answers
2k views

wpf datatrigger on an image source

Assuming the binding is right and the image files are where they shuld be, can anyone spot why the image in the xaml below won't change when the trigger evaluates to true? Cheers, Berryl ...
2
votes
1answer
1k views

Using custom dependency properties as DataTrigger in WPF

I have a custom dependency property that I would like to use as a data trigger. Here is the code behind: public static readonly DependencyProperty BioinsulatorScannedProperty = ...
2
votes
1answer
432 views

Animation with MVVM pattern

What is the best way to trigger an animation while using the MVVM pattern? More specifically, I have a form which has several fields. When a user click's the save Button, I would like to show an ...
2
votes
2answers
2k views

Bind FontWeight to a Boolean in Silverlight

Silverlight does not feature DataTriggers, so in this case... what might be the best way to conditionally set the fontweight of an item to a boolean? For example... the following is not possible in ...
2
votes
1answer
180 views

DataTrigger does not work as expected

I have a ComboBox bound to a ViewModel property called Property. Property is a TypeDescriptor. When user changes the value in the ComboBox, the Property is updated. On the UI i would like to either ...

1 2 3 4 5