ClientEditPage.xaml 1.4 KB

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="practiceApplicaiton.ClientEditPage"
  5. Title="Клиент">
  6. <ScrollView>
  7. <VerticalStackLayout Padding="20" Spacing="12">
  8. <Label Text="Фамилия" FontAttributes="Bold" TextColor="#4472C4"/>
  9. <Entry x:Name="LastNameEntry" Placeholder="Иванов"/>
  10. <Label Text="Имя" FontAttributes="Bold" TextColor="#4472C4"/>
  11. <Entry x:Name="FirstNameEntry" Placeholder="Александр"/>
  12. <Label Text="Отчество" FontAttributes="Bold" TextColor="#4472C4"/>
  13. <Entry x:Name="PatronymicEntry" Placeholder="(необязательно)"/>
  14. <Label Text="Телефон" FontAttributes="Bold" TextColor="#4472C4"/>
  15. <Entry x:Name="PhoneEntry" Keyboard="Telephone" Placeholder="+79001234567"/>
  16. <Label Text="Турфирма" FontAttributes="Bold" TextColor="#4472C4"/>
  17. <Picker x:Name="FirmPicker" Title="Выберите турфирму" TextColor="#4472C4"/>
  18. <Button Text="Сохранить" BackgroundColor="#4472C4"
  19. TextColor="White" CornerRadius="8" Clicked="OnSaveClicked"/>
  20. </VerticalStackLayout>
  21. </ScrollView>
  22. </ContentPage>