Tagged Questions
0
votes
0answers
51 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
1answer
31 views
DataTrigger Overflow exception
How can this be an overflow exception...?
<DataTemplate x:Key="ElementTemplate">
<StackPanel Orientation="Horizontal">
<StackPanel.Style>
...
0
votes
2answers
489 views
How to change ContentControl's Content property using DataTemplate's DataTriggers based on Window's ViewModel property which is an enum value
I ask for your help in solving something that is simply said and most likely simply done but not for me at the moment.
What I'm developing is an application that looks like Office 2013 using FluidUI ...
0
votes
0answers
82 views
Unable to fire Trigger in DataTemplateColumn
I have a DataGrid Which a DataTemplate used by the ContentControl.
Inside the DataGrid I have 1 One Column with the Header Template and a Column Template.
The Datatemplate Trigger Fires in the ...
1
vote
0answers
95 views
Insert the Name of a BindingSource into a String?
I want to use a DataTemplate to change the Header of some TabItems.
So far I have this Code, which works fine:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
0
votes
1answer
153 views
How to use the same DataTrigger for multiple DataTemplate?
I want to set a DataTrigger for multiple DataTemplate but I am not sure if there is way to do that?
I have view structured like below
<ItemsControl ItemsSource="{Binding Collection}"
...
0
votes
2answers
382 views
Own DataTemplateSelector MVVM
I'm using a MVVM-Pattern with a ModelView-First approach. This works fine, so far.
Now I have a UserControl (View) which should display various content depending on a Property located in my ViewModel.
...
1
vote
2answers
443 views
Changing DataTemplates at runtime using DataTriggers
I'm trying to change a DataTemplate for objects in my WPF application according to a specific boolean value. When the value is "True" I want the DataTemplate to be something and when the value is ...
3
votes
3answers
3k 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
...
1
vote
1answer
89 views
how to stop template being created in a specific condition
I currently have a list of categories. For each category a template is created with an expander and datagrid which will display a list of items associated with the category.
My problem is that if ...
0
votes
1answer
203 views
How to reference “PreviousData” when setting ContentPresenter.Style
In the following code I am trying to set the style of the first item in my collection to one template and the rest to a different template by checking if the PreviousElement is null. I think my ...
0
votes
1answer
139 views
How do I have alternative content in a DataGrid.RowHeaderTemplate?
In a DataGrid, I'm using the RowDetails area to load a UserControl with its own ViewModel - works very well.
<DataGrid.RowDetailsTemplate>
<DataTemplate>
...
1
vote
1answer
1k views
Setting the tag property of a button to an integer value and firing a trigger
I want to do something like the following but it doesn't work. I want to use a datatrigger to set an integer (or whatever type) value to the Tag Property of a button i define inside my datatemplate. ...
1
vote
1answer
371 views
Implementing both controltemplate and datatriggers for a textbox control
I'm new to WPF....I have tried implementing controltemplate and datatriggers both for textbox..I want to change the background color of the textbox when the value entered in that is not "18" through ...
0
votes
1answer
326 views
Setting different styles for Dual level grouping with DataTrigger
I have a dual level grouping and thought I could define different styles with DataTriggers.
Thinking that GroupStyles.HeaderTemplate would bind to CollectionViewGroup I tried DataBinding to ...
2
votes
1answer
2k views
Creating DataTemplate and DataTrigger in the code
I'm trying to create DataTemplate in code-behind. And I have a problem with DataTrigger in it.
Here is DataTemplate as written in xaml:
<DataTemplate x:Key="XamlTemplate" >
<TextBox ...
1
vote
2answers
1k views
Troubles with GoToStateAction
I have had several problems with the GoToStateAction in different scenarios, and I'm beginning to believe that either the feature is buggy, or that my understanding of it is off.
In this case, I have ...
4
votes
3answers
1k 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 ...
0
votes
2answers
219 views
Can I access a named fill gradient in a WPF Datatemplate?
I have a DataTemplate with a number of layered text and graphic objects. One of them is a glow effect that comes from the RadialGradientBrush Fill property of a Rectangle. At first, I named the ...
4
votes
1answer
3k 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 ...
2
votes
1answer
1k views
DataTrigger not reevaluating after property changes
[Original]
I have a ListBox which has its ItemsSource (this is done in the code behind on as the window is created) databound to an ObservableCollection. The ListBox then has the following ...
3
votes
1answer
3k views
WPF DataTrigger cannot find Trigger Target
<ListBox.ItemTemplate>
<DataTemplate>
<Grid x:Name="grid">
<Grid.Background>
<SolidColorBrush x:Name="backgroundBrush" ...
0
votes
1answer
623 views
HowTo animate filtering of items displayed in an ItemsControl (WPF)
I'm currently creating a control that is mainly just an ItemsControl displaying some items.
In addition I have some controls which allows the user to filter the items in that ItemsControl.
What I'm ...
1
vote
1answer
234 views
WPF Highlight Item
I have a ViewModel that provides a collection of Items. There is also a ActiveItem propery. The Items collection may or may not contain ActiveItem.
What I want to do (in XAML) is display the items as ...
3
votes
2answers
3k 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 ...
1
vote
1answer
2k views
How to change ListBox DataTemplate in WPF based on CheckBox
I am trying to apply a DataTrigger to change the DataTemplate for a ListBox and am getting the error:
"Error 1 Cannot find the Trigger target 'IssueListBox'. (The target must appear before any ...
1
vote
2answers
204 views
Databinding and Triggers compatability in WPF
I have a problem. I made a DataTemplate for a TreeView and I need to set the initial value of the ToggleButton's IsChecked property depending on my model. But it turns out that setting this property ...
1
vote
1answer
2k views
DataTemplate, LoadContent and DataTriggers not firing
I have a custom UserControl which has a DependencyProperty "ItemTemplate" of type "DataTemplate". I create an instance of this ItemTemplate via .LoadContent(), assign the .DataContext and put it an ...