SearchDB.xaml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <Page x:Class="PFC.Program.Verification.Pages.SearchDB"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:PFC.Program.Verification.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450"
  9. d:DesignWidth="800"
  10. Title="SearchDB">
  11. <Grid Background="White">
  12. <Grid.RowDefinitions>
  13. <RowDefinition Height="*"/>
  14. <RowDefinition Height="*"/>
  15. <RowDefinition Height="*"/>
  16. </Grid.RowDefinitions>
  17. <!--Название проги-->
  18. <StackPanel>
  19. <TextBlock Text="PFC"
  20. VerticalAlignment="Center"
  21. HorizontalAlignment="Center"
  22. FontSize="50"/>
  23. <TextBlock Text="(автономная программа учета финансов)"
  24. VerticalAlignment="Center"
  25. HorizontalAlignment="Center"
  26. FontSize="25"/>
  27. </StackPanel>
  28. <!--Интерактивное поле-->
  29. <StackPanel Grid.Row="1"
  30. VerticalAlignment="Center">
  31. <TextBlock Name="infoField_Txb"
  32. Text="..."
  33. Foreground="SpringGreen"
  34. HorizontalAlignment="Center"
  35. FontSize="20"/>
  36. <!--Переход на страницу авторизации-->
  37. <Button Name="loginBtn"
  38. Grid.Row="2"
  39. Height="30"
  40. Content="Войти"
  41. VerticalAlignment="Top"
  42. FontSize="20"
  43. Padding="0"
  44. Margin="10"
  45. Visibility="Visible"
  46. IsEnabled="False"/>
  47. <!--Перехода на страницу регистрации-->
  48. <Button Name="regisBtn"
  49. Grid.Row="2"
  50. Height="30"
  51. Content="Зарегистрироваться"
  52. VerticalAlignment="Top"
  53. FontSize="20"
  54. Padding="0 0 0 0"
  55. Margin="10"
  56. Visibility="Visible"
  57. IsEnabled="False"/>
  58. </StackPanel>
  59. <!--Критические сообщения-->
  60. <TextBlock Name="criticalError_Txb"
  61. Grid.Row="2"
  62. FontSize="10"
  63. Margin="5"
  64. TextWrapping="Wrap"
  65. VerticalAlignment="Top"
  66. HorizontalAlignment="Right"
  67. Foreground="Red"/>
  68. <!--Статус подключения-->
  69. <Image Name="connectionStatus_Img"
  70. Grid.Row="2"
  71. VerticalAlignment="Bottom"
  72. HorizontalAlignment="Left"
  73. Source="/Resources/Connection-.png"
  74. Width="64"/>
  75. <!--Кнопка обновления соединения-->
  76. <Button Name="refreshConnection_Btn"
  77. Grid.Row="2"
  78. Content="Обновить"
  79. FontSize="20"
  80. VerticalAlignment="Bottom"
  81. HorizontalAlignment="Left"
  82. Margin="80 0 0 10"
  83. Visibility="Hidden"
  84. Click="refreshConnection_Btn_Click"/>
  85. </Grid>
  86. </Page>