InMoneyGuide.xaml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <Window x:Class="Muchinfo.MTPClient.Bank.Views.InMoneyGuide"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:resource="clr-namespace:Muchinfo.MTPClient.Resources;assembly=Client.Resources"
  5. Title="{x:Static resource:Client_Resource.text_title_InGuide}"
  6. Width="500"
  7. Height="600"
  8. ShowInTaskbar="False"
  9. Style="{DynamicResource DialogWindowStyle}">
  10. <Grid Margin="0,20">
  11. <Grid.RowDefinitions>
  12. <RowDefinition Height="35" />
  13. <RowDefinition />
  14. <RowDefinition Height="35" />
  15. <RowDefinition />
  16. </Grid.RowDefinitions>
  17. <TextBlock Margin="20,0"
  18. VerticalAlignment="Center"
  19. Text="{x:Static resource:Client_Resource.text_Content_InGuideFirstStep}" />
  20. <Image Grid.Row="1"
  21. Margin="20,10"
  22. Source="{DynamicResource InGuidFirstStep}"
  23. Stretch="Fill" />
  24. <Line Margin="20,0"
  25. HorizontalAlignment="Stretch"
  26. VerticalAlignment="Bottom"
  27. Grid.ZIndex="1000"
  28. Stretch="Fill"
  29. Stroke="{DynamicResource InnerBorderBrush}"
  30. StrokeThickness="1"
  31. X1="0"
  32. X2="1"
  33. Y1="0"
  34. Y2="0" />
  35. <TextBlock Grid.Row="2"
  36. Margin="20,0"
  37. VerticalAlignment="Center"
  38. Text="{x:Static resource:Client_Resource.text_Content_InGuideSecondsStep}" />
  39. <Line Grid.Row="2"
  40. Margin="20,0"
  41. HorizontalAlignment="Stretch"
  42. VerticalAlignment="Bottom"
  43. Grid.ZIndex="1000"
  44. Stretch="Fill"
  45. Stroke="{DynamicResource InnerBorderBrush}"
  46. StrokeThickness="1"
  47. X1="0"
  48. X2="1"
  49. Y1="0"
  50. Y2="0" />
  51. <Image Grid.Row="3"
  52. Width="200"
  53. Height="180"
  54. Source="{DynamicResource InGuidSecondStep}" />
  55. </Grid>
  56. </Window>