Tagged Questions
0
votes
0answers
19 views
WPF : Animating Width of an Control alternately with start value
I have an image whose width should be animated from 0 to 30 pixels when a boolean property changes to true an back from 30 to 0 pixels if the property switches back to false.
In general, this works ...
0
votes
0answers
20 views
Using Style Trigger to change string format of a GridView header
I am trying to change the format of a header in my gridview based on the contents of a boolean flag.
<ListView.Resources>
<Style TargetType="GridViewColumnHeader" ...
0
votes
2answers
39 views
Triggers behavior with actions
please look at this xaml code:
<Style x:Key="WowButton" TargetType="Button" >
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True"> ...
2
votes
2answers
58 views
Setting object properties with Trigger in WPF
I have a strange problem, I'm currently trying to styling a SingleUpDown Control (from Extended WPF Toolkit)
This is the current style that does not work:
<xctk:SingleUpDown>
...
0
votes
1answer
53 views
Regular databinding seems to disable triggers
I just came across another problem with WPF.
I have a collection of custom controls (composite ones; made of a border inside a grid etc.).
I'm controlling their Background color via triggers as ...
0
votes
1answer
78 views
WPF : How to style the initial state of a radiobutton group?
I just want to give an initial style to my radiobutton group, before one of the radiobuttons is checked or unchecked:
<Style x:Key="RadioButtonStyle" TargetType="{x:Type RadioButton}">
...
0
votes
1answer
31 views
How to apply a style from a resource dictionary if the Tag property is set
I have a style in a resource dictionary as so
<Style x:Key="heading" TargetType="Label">
<Setter Property="FontSize" Value="26" />
</Style>
and I wish to have it assigned to ...
1
vote
1answer
116 views
Don't show multi binding tool tip when empty or null
I'm assuming the reason this isn't working is because my triggers are checking for an empty string or null, yet what I really have is a textblock with a Text property that is empty (or null). Does ...
0
votes
0answers
48 views
Affecting attached property using Blend Interactivity
is there a built in functionality for affecting an attached property from the element it is placed on using Blend Interactivity .
for example i want to affect the positioning of this button on the ...
1
vote
2answers
812 views
WPF Trigger Properties
I am fairly new to WPF and I am currently working with triggers. I have a question regarding a simple trigger. By simple trigger, I mean one that watches for a change in a dependency property and ...
0
votes
1answer
116 views
Background property of DataGridRow is wrong
I've got a WPF application that uses a DataGrid control and is used by police officers in police cars. I use merged dictionaries to implement Day and Night "modes", where the color palette changes ...
0
votes
2answers
68 views
XAML style trigger on double value
I want to display specific images according to a double-field in my datasource.
This field contains values from 0.0 to 100.0 and I got four images, ranging from 0-25, 26-50, 51-75 and 76-100.
How ...
2
votes
1answer
450 views
How to change a path fill (on a button) with triggers in XAML
I have a button with a path as icon,i want to change the fill of the path when the mouse is over the whole button (not only the path). Thanks.
<Button Name="Test_Button"
...
0
votes
1answer
549 views
Change DataTemplate style in ListBoxItem if the item is selected
I have a listbox with an expander inside the ItemTemplate. I managed to bind the expander's IsExpanded property to the ListBoxItem's IsSelected property ok. Now I want to apply a style to the ...
0
votes
1answer
466 views
How can i use enum types in XAML?
I'm learning WPF and i encountered this problem:
Example:
I've an enum type in another namespace of XAML :
public enum NodeType
{
Type_SYSTEM = 1, // System
Type_DB ...
0
votes
1answer
148 views
WPF listview. How to support simultaneously row background color and alternateIndex for this row
I have a listview that contains log messages. I want to set the background color for each row in listview according to the severity of its corresponding entry. I do this using DataTrigger (see the ...
0
votes
1answer
209 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
2answers
351 views
IsMouseOver triggers background color change only temporarily
I'm a beginner with this and trying to understand how WPF and XAML work. The following snippet is (a trivial modification) from Nathans Unleashed 4.0 book. I inserted it into an Ok button:
...
1
vote
2answers
104 views
Can't get underline to show up when triggered
I have the following style, but when the mouse over trigger is true, no underline shows up on the text.
<Style x:Key="HyperlinkToggleButtonStyle" TargetType="ToggleButton">
<Setter ...
0
votes
2answers
212 views
Set a trigger's property to a child
How can I set the trigger to be depend on a children's property?
Like I want to change the header of my Expander depending whether the Expander's ListView
does have children or not.
But I always get ...
0
votes
0answers
187 views
Animating item removal from LongListSelector
So I have a View Model bound to a collection of custom objects with some properties (Name, Size etc) which implements NotifyPropertyChanged so the LongListSelector updates accordingly.
Now I want to ...
2
votes
2answers
118 views
Same setters for different triggers
I have several elements and all of them should look the same if "X". The problem is, "X" is different for each element, so I can't easily use a shared style for them. But in all cases, the setters are ...
0
votes
0answers
171 views
WPF DataTrigger on UserControl Not Working
My project is WPF (Windows Presentation foundation) with the 4.5 framework using Visual Studio 2012.
I have a UserControl in my window which I'd like to animate(move) automatically after input has ...
0
votes
1answer
212 views
WPF DataTrigger on ListViewItem.IsSelected
I have a ListView, styled like this:
<ListView.View>
<GridView>
<GridViewColumn Header="Reset" Width="60">
<GridViewColumn.CellTemplate>
...
1
vote
2answers
135 views
Hand focus to inner element in XAML
I have a custom element which looks like:
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"/>
<Setter Property="Background" ...
2
votes
3answers
322 views
Include XAML Trigger To ControlTemplate
I am pretty new with WPF and am doing some custom control stuff...
My problem is that the code in one file is going to be way to much, so i want
to split the code in seperate files, so other people ...
1
vote
1answer
178 views
MVVM approach for Triggers off dependency property in XAML
I've created a helper class to host custom Dependency properties. I have created a custom UserControl object that's somewhat complex and updates it's layout rather frequently. I'd like to trigger an ...
0
votes
0answers
61 views
How to set color back to original after style trigger changes it in XAML
Hopefully this is easy and I am simply over complicating the issue.
I need to change the color of a border in XAML when I receive an alarm state. I have this part working. But now I want to make this ...
0
votes
1answer
114 views
Simplification of this XAML code possible? (MultiDataTrigger, DependencyProperty)
finally I got my custom button almost act like I want it to act.
The problem is the code :D (IsChecked is a DependencyProperty)
<ControlTemplate.Triggers>
<!-- EventTriggers for ...
0
votes
1answer
326 views
Unable to set style-trigger property to custom dependency property
I got another problem while working with my usercontrol's xaml file -.-'
I tried to implement an IsChecked property to my custom button in order to set a different background colour if the button is ...
1
vote
2answers
66 views
Apply a style to a control conditionally
In a MVVM project I want to apply the style "ReadOnlyTextBox" to a control only if a property exposed by the viewmodel is set to true.
I thought I could use a trigger but unfortunately I learnt from ...
3
votes
2answers
1k views
What's the right way to trigger on multiple conditions in a WPF Style
My WPF application has a DataGrid control in it. I have a default custom style for the DataGridRow class which works well. However, for this one particular DataGrid on this one particular screen, I ...
1
vote
1answer
99 views
Is it possible to change control visibility from another control trigger
I have this style and trigger for a IsMouseOver property of a combobox (turned into a menu). I would like to change the visibility of another object when this trigger fires on (when the mouse is over ...
0
votes
1answer
354 views
EventTrigger RoutedEvent amimation in wpf xaml
I want an animation to be launched when MyObject.IsGlowing = true so I did this (I'm in a <DataTemplate> if that can help)
<Ellipse Width="100" Height="100" Name="MyEllipse">
...
0
votes
2answers
104 views
Trigger on an Inner/Attached property
Trigger on an Inner property
<Button BorderBrush="Black" BorderThickness="2" x:Name="TimeButton" ClickMode="Press" Click="SetTime_Click" Height="26" HorizontalAlignment="Left" Margin="15, 0, 0, 0" ...
0
votes
1answer
225 views
Disable button in DataGrid based on different column value
I have the following code:
<DataGridTextColumn IsReadOnly="True" Header="StringLock" Binding="{Binding StringLock}">
<DataGridTextColumn.ElementStyle>
...
0
votes
2answers
189 views
How to blink application background when ItemsSource's size changes in WPF?
I have a list of Error notifications showing up in my top menu.
<MenuItem Header="{Binding NotificationList.UnreadCount}"
HeaderStringFormat="Notifications ({0})"
ItemsSource="{Binding ...
0
votes
1answer
143 views
Button control animations using event triggers
I want to achieve in XAML using event triggers where button's style (button and text gets bigger) change when mouse enter is triggered. Then when the mouse leave event is triggered, it will get back ...
0
votes
2answers
419 views
MouseOver trigger doesn`t work after programmatically set Foreground
I'm new to WPF, but searching internet for some days I couldn't figure out my problem.
After I programmatically change Foreground property, IsMouseOver trigger doesn't work. Please be tolerant and ...
0
votes
1answer
197 views
trigger on texbox got focus
I have virtual keyboard which should be hidden and i want to show it only when textbox get focus. I'm using mvvm so i dont want to write any code on code behind, so i want to make some trigger if it's ...
0
votes
0answers
307 views
Setting TextBox text from a ControlTemplate Trigger based on validation error
Below is a style for a textbox with a ControlTemplate and Validation. The Style Trigger setting the ToolTip works - so basically I get the reported validation error coming up in the ToolTip. But I ...
1
vote
0answers
77 views
BasedOn DataTriggers not Activating
I created a base style for my navigation menu. I want to change certain elements such as label content and icons based on a particular style while keeping the hover/click effects standard for all ...
2
votes
1answer
1k views
Combine DataTrigger and Trigger in a MultiDataTrigger
I've seen from some examples that it is possible to combine this kind of trigger:
<Trigger Property="IsMouseOver" Value="True">
With this kind of data trigger :
<DataTrigger ...
0
votes
1answer
211 views
Automatically selecting a TreeViewItem if a TextBox in data template gets focus (not using code)
I have a 2-level TreeView.
Level-2 TreeViewItems contain TextBox controls via a data template.
What I want: if a TextBox control gets focus, the respective TreeViewItem is selected.
I did some ...
0
votes
2answers
237 views
Triggers not updating
Here is the psuedo code for what I want to do
IF NOT ISDIRTY
THEN VISIBILITY EQ VISIBILITY.COLLAPSED
IF ISDIRTY AND ISVALID
THEN VISIBILITY EQ VISIBILITY.VISIBLE AND COLOR = GREEN
...
0
votes
1answer
172 views
Trigger Properties in XAML
I am beginning to learn XAML and I am following along with the MCTS Self-Paced Training book. I've come to the section about triggers (more specifically Property Triggers) and I stumbled upon ...
3
votes
5answers
318 views
Should I use WPF converter or trigger?
I was wondering how do you decide when to use converters and when to use triggers.
I prefer using a triggers for operations on GUI (like showing/hiding controls, changing their appearance etc.).
Some ...
0
votes
2answers
1k views
WPF Boolean Trigger
I have a boolean in the Window class of my WPF application. How can I target a trigger depending on weather this boolean is true or false?
<Grid>
<Grid.Triggers>
<Trigger ...
...
4
votes
1answer
703 views
Create blur effect on button disabled
I'm trying to make a button, which would be blured when disabled.
So far, here's what I have:
<Style x:Key="BluredButton" TargetType="{x:Type Button}">
<Setter Property="Template">
...
0
votes
1answer
785 views
Making WPF grid slide up when a mouse enters the window
I currently have the XAML:
<Grid Name="WindowGrid">
<Grid Height="66" HorizontalAlignment="Stretch" Margin="0" Name="ControlsGrid" VerticalAlignment="Bottom" Background="#B4000000" />
...


