Tagged Questions
0
votes
0answers
53 views
How to set up a wpf trigger to connect properties between two DataGridTemplateColumns?
I have a DataGrid with 2 columns, each of them defined as DataGridTemplateColumns.
Now I want to make the 1st textbox of the 2nd column visible depending on the listbox selection index, which resides ...
0
votes
2answers
364 views
WPF TabItem OnMouseOver shall trigger the visibility of a Button inside the TabItem
I have a TabControl containing TabItems. I overwrote their ItemTemplate to contain:
A TextBlock showing the caption of the TabItem
A Button (X) which closes the tab
Now I would like to make the ...
0
votes
1answer
161 views
How to find ItemTemplate from DataTemplate of TabItem
I am trying to set a trigger in my DataTemplate so that when the source object has a property HasUnreadMessages set to true, then the header text goes red. But from inside the triggers in datatemplate ...
0
votes
1answer
121 views
Can't change content-template dynamically
I have a ContentControl that I need to set it's ContentTemplate dynamically.
so I decided to write 2 DataTemplates, and then style my ContentControl such that a trigger fires and set the proper ...
0
votes
2answers
84 views
DataTemplateTrigger not working with datatemplateselector
I have defined a datatemplate that has a trigger that should simply change the background color if the item is selected. For some reason it doesn't seem to be working.
<DataTemplate ...
0
votes
1answer
388 views
showing different user controls - WPF MVVM
I created a dbml file, which automatically created the designer.cs
In the designer.cs (which is the Model in the MVVM) there are two different classes in the database:
ElementA and ElementB.
I have ...
0
votes
1answer
114 views
Create ListBoxItem property
I have two ListBox's and a Button. The Button sends List1.SelectedItems over to List2. I would like to add a visual cue for the items in List1 that have been added to List2, similar to how there is ...
0
votes
1answer
271 views
DataTemplate trigger does not work
I have this simple piece of code that just doesn't work. The idea is that the icon in the tab header will change based on the content of the view model.
<DataTemplate DataType="{x:Type ...
0
votes
1answer
173 views
Can you base a trigger on whether you're in a drag event?
I want to style a Border via a Trigger in response to being dragged over vs simple mouse-over.
More specifically, we have a list of items that displays a hardware port (such as Port 1, Port 2, etc.) ...
2
votes
1answer
5k views
How to apply style trigger to datatemplate in WPF
I've got the following..
<ComboBox Grid.Row="2" Grid.Column="2" Grid.RowSpan="2" ItemsSource="{Binding ShipperAddresses}" Text="{Binding ShipperAddress}" Margin="85,2,0,2">
...
0
votes
2answers
829 views
Cannot find Trigger target… the target must appear before
I'm getting this warning:
Cannot find the Trigger target 'ErrandPropertiesGroupBox'. (The target must appear before any Setters, Triggers, or Conditions that use it.)
Here's the XAML:
...
0
votes
1answer
1k views
Constraining item heights in WPF ListBox, with indicator
I have a ListBox control in WPF which contains items of variable height (predominantly a large text block, so it's also affected by word wrapping). Since scrolling behaves badly when the height of an ...
0
votes
3answers
873 views
WPF DataTemplate Trigger set a property in a different DataTemplate
I have 2 DataTemplates (A & B). A contains an Expander and the expander's HeaderTemplate is pointed at another DataTemplate (B).
DataTemplate B is shown below:
<DataTemplate ...
2
votes
1answer
2k views
WPF - data binding trigger before content changed
How do i create trigger, which fires BEFORE binding changes value? How to do this for datatemplate?
<ContentControl Content="{Binding Path=ActiveView}" Margin="0,95,0,0">
...
0
votes
2answers
2k views
DataTemplate, Style, Triggers
Could you guys help me? I have a with custom and in it:
<ListBox>
<ListBox.ItemTemplate>
<DataTemplate>
<Border BorderBrush="Black" ...
0
votes
1answer
257 views
Hook in datatemplate view switch/change
I am switching my UserControls via DataTemplate. When I leave the UserControl/DataTemplate View I need to ask wether the user wants to save or not because else all data will be lost like graphical ...
0
votes
1answer
451 views
Underline Text in Label which is in a DataTemplate
i have a ListView which contains objects bound from an collection. The representation of the objects I have set with a DataTemplate. Now I want to do the following.
There are two TextBlocks in my ...
7
votes
3answers
3k views
Selecting a ListBoxItem when its inner ComboBox is focused
I have a DataTemplate that will be a templated ListBoxItem, this DataTemplate has a
ComboBox in it which when it has focus I want the ListBoxItem that this template
represents to become selected, this ...
0
votes
1answer
609 views
Displaying xaml resources dynamically?
I used Mike Swanson's illustrator to xaml converter to convert some of my images to xaml.
The convert creates a viewbox that contains the image. These viewboxes I made resource files in my program.
...
0
votes
2answers
336 views
Is it possible to change properties on a sub item in a DataTemplate using triggers from the containing control?
I want to change the background colour of the rectangle in the IsMouseOver trigger, is this possible?
<Window>
<Window.Resources>
<DataTemplate ...
6
votes
4answers
4k views
WPF Debugging datatriggers?
I am trying to do something very simple. I have a ToggleButton.IsChecked property bound to a bool. I want the background to toggle between red(false) and green(true). But for some reason it seems to ...