| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <Window x:Class="Muchinfo.MTPClient.Bank.Views.InMoneyGuide"
- 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"
- Title="{x:Static resource:Client_Resource.text_title_InGuide}"
- Width="500"
- Height="600"
- ShowInTaskbar="False"
- Style="{DynamicResource DialogWindowStyle}">
- <Grid Margin="0,20">
- <Grid.RowDefinitions>
- <RowDefinition Height="35" />
- <RowDefinition />
- <RowDefinition Height="35" />
- <RowDefinition />
- </Grid.RowDefinitions>
- <TextBlock Margin="20,0"
- VerticalAlignment="Center"
- Text="{x:Static resource:Client_Resource.text_Content_InGuideFirstStep}" />
- <Image Grid.Row="1"
- Margin="20,10"
- Source="{DynamicResource InGuidFirstStep}"
- Stretch="Fill" />
- <Line Margin="20,0"
- HorizontalAlignment="Stretch"
- VerticalAlignment="Bottom"
- Grid.ZIndex="1000"
- Stretch="Fill"
- Stroke="{DynamicResource InnerBorderBrush}"
- StrokeThickness="1"
- X1="0"
- X2="1"
- Y1="0"
- Y2="0" />
- <TextBlock Grid.Row="2"
- Margin="20,0"
- VerticalAlignment="Center"
- Text="{x:Static resource:Client_Resource.text_Content_InGuideSecondsStep}" />
- <Line Grid.Row="2"
- Margin="20,0"
- HorizontalAlignment="Stretch"
- VerticalAlignment="Bottom"
- Grid.ZIndex="1000"
- Stretch="Fill"
- Stroke="{DynamicResource InnerBorderBrush}"
- StrokeThickness="1"
- X1="0"
- X2="1"
- Y1="0"
- Y2="0" />
- <Image Grid.Row="3"
- Width="200"
- Height="180"
- Source="{DynamicResource InGuidSecondStep}" />
- </Grid>
- </Window>
|