Explain Multitrigger concept in WPF?( C# WPF Interview questions with answers)

To understand answer of this WPF Interview question you need to first understand WPF Style triggers. You can read about WPF Style triggers from here.

Many times we want style triggers to be executed when multiple conditions are true. For example let’s say we have a button we want the button background to be set to “RED” when there is focus on the button and when somebody moves the mouse on the button.

In other situations the back ground color should be set to “AQUA”.IS imageSo to achieve such multiple AND conditions we can use “MultiTrigger” XAML element as shown in the below XAML code. Multiple AND conditions needs to be defined in “MultiTrigger.Conditions” tag and the property which needs to be modified in “MultiTrigger.Setters” tag.

<Style x:Key=”myStyle” TargetType=”Button”>
<Style.Triggers>
<MultiTrigger>
<MultiTrigger.Conditions>
<Condition Property=”IsFocused” Value=”True” />
<Condition Property=”IsMouseOver” Value=”True” />
</MultiTrigger.Conditions>
<MultiTrigger.Setters>
<Setter Property=”Background” Value=”Red” />
</MultiTrigger.Setters>
</MultiTrigger>
</Style.Triggers>
<Setter Property=”Background” Value=”Aqua” />
</Style>

Below is an awesome WPF video which discusses about difference between WPF and Winforms. Do not miss it.

About C#.NET, ASP.NET MVC Core, Angular, Azure, (MSBI)Business Intelligence, Data Science - Python Interview Questions

This blog is for developers who want to crack .NET and C# interviews. It has all tips and tricks needed to crack .NET interviews , C# interview , SQL Server interview , Java interview , WCF Interview , Silverlight interview , WPF interview , LINQ interview , Entity framework Interview. Do not forget to watch our Learn step by step video series. ASP.NET MVC Interview Questions and Answers:- https://youtu.be/pXmMdmJUC0g C# Interview Questions and Answers:- https://youtu.be/BKynEBPqiIM Angular Interview Questions and Answers:- https://youtu.be/-jeoyDJDsSM C# tutorial for beginners(4 hrs.):- https://youtu.be/AxEGRBFwlmI Learn Azure Step by Step:- https://youtu.be/wdUK7bCMXqs Azure AZ-900 fundamentals certification :- https://youtu.be/hC9iGgJorz8 AZ- 204 certification Azure:- https://youtu.be/qI8PRn2C080 Learn Angular tutorial step by step https://tinyurl.com/ycd9j895 Learn MVC 5 step by step in 16 hours:- https://youtu.be/Lp7nSImO5vk Learn Design Pattern Step by Step https://goo.gl/eJdn0m Learn MSBI Step by Step in 32 hours:- https://goo.gl/TTpFZN Learn SQL Server Step by Step http://tinyurl.com/ja4zmwu Python Tutorial for Beginners:- https://youtu.be/KjJ7WzEL-es Learn Data Science in 1 hour :- https://tinyurl.com/y5o7qbau Learn Power BI Step by Step:- https://tinyurl.com/y6thhkxw Learn Tableau step by step :- https://tinyurl.com/kh6ojyo
This entry was posted in Uncategorized and tagged , , , , . Bookmark the permalink.

Leave a comment