| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <windows:TradeAccountWindow x:Class="Muchinfo.MTPClient.Account.Views.MessagePromptView"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:resource="clr-namespace:Muchinfo.MTPClient.Resources;assembly=Client.Resources"
- xmlns:windows="clr-namespace:Muchinfo.MTPClient.Infrastructure.Windows;assembly=Client.Infrastructure"
- Name="messagePrompt"
- Title="{x:Static resource:Client_Resource.Message_Title}"
- Width="208"
- Height="104"
- ShowInTaskbar="False"
- Style="{DynamicResource WindowBaseStyle}"
- Topmost="True">
- <Window.Resources>
- <Style TargetType="{x:Type TextBlock}">
- <Setter Property="VerticalAlignment" Value="Center" />
- <Setter Property="Foreground" Value="{DynamicResource MuchinfoBrush105}" />
- </Style>
- </Window.Resources>
- <windows:TradeAccountWindow.Triggers>
- <EventTrigger RoutedEvent="Window.Loaded">
- <BeginStoryboard>
- <Storyboard x:Name="Storyboard1">
- <DoubleAnimation Duration="0:0:5"
- From="1"
- Storyboard.TargetName="messagePrompt"
- Storyboard.TargetProperty="Opacity"
- To="0" />
- </Storyboard>
- </BeginStoryboard>
- </EventTrigger>
- </windows:TradeAccountWindow.Triggers>
- <!--
- <Window.Triggers>
- <EventTrigger RoutedEvent="Window.Loaded">
- <BeginStoryboard>
- <Storyboard x:Name="Storyboard1">
- <DoubleAnimation Storyboard.TargetName="messagePrompt" Storyboard.TargetProperty="Opacity" From="1" To="0" Duration="0:0:5" />
- </Storyboard>
- </BeginStoryboard>
- </EventTrigger>
- </Window.Triggers>
- -->
- <Grid>
- <TextBlock Name="MessageInfo"
- HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontSize="14" />
- </Grid>
- </windows:TradeAccountWindow>
|