Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This will help you find the code below</p> <pre><code>&lt;UserControl x:Class="WrapPanel.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="400" xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions" xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit" xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"&gt; &lt;Grid x:Name="LayoutRoot" Background="White"&gt; &lt;StackPanel&gt; &lt;StackPanel.Resources&gt; &lt;Storyboard x:Key="mystoryboard"&gt; &lt;DoubleAnimation Storyboard.TargetName="txtSample" Storyboard.TargetProperty="Opacity" From="0" To="1" Duration="0:0:1.0"&gt; &lt;DoubleAnimation.EasingFunction&gt; &lt;PowerEase EasingMode="EaseIn" Power="8" /&gt; &lt;/DoubleAnimation.EasingFunction&gt; &lt;/DoubleAnimation&gt; &lt;/Storyboard&gt; &lt;/StackPanel.Resources&gt; &lt;ListBox Name="lstSample" SelectionChanged="lstSample_SelectionChanged"&gt; &lt;i:Interaction.Triggers&gt; &lt;i:EventTrigger EventName="SelectionChanged"&gt; &lt;ei:ControlStoryboardAction ControlStoryboardOption="Play" Storyboard="{StaticResource mystoryboard}"&gt; &lt;/ei:ControlStoryboardAction&gt; &lt;/i:EventTrigger&gt; &lt;/i:Interaction.Triggers&gt; &lt;/ListBox&gt; &lt;Border Name="brdrTextSampleLanguageOne" BorderThickness="0"&gt; &lt;TextBlock Text="This is sample text." Name="txtSample" TextAlignment="Right" VerticalAlignment="Center" /&gt; &lt;/Border&gt; &lt;/StackPanel&gt; &lt;/Grid&gt; &lt;/UserControl&gt; </code></pre> <p>Let me know if it works for you.</p> <p>Cheers!</p> <p>Vinod</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload