25 lines
981 B
XML
25 lines
981 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:viewModels="clr-namespace:Jugenddienst_Stunden.ViewModels"
|
|
x:Class="Jugenddienst_Stunden.Views.NotePage"
|
|
Title="Note">
|
|
<ContentPage.BindingContext>
|
|
<viewModels:NoteViewModel />
|
|
</ContentPage.BindingContext>
|
|
<VerticalStackLayout Spacing="10" Margin="5">
|
|
<Editor x:Name="TextEditor"
|
|
Placeholder="Enter your note"
|
|
Text="{Binding Text}"
|
|
HeightRequest="80" />
|
|
|
|
<Grid ColumnDefinitions="*,*" ColumnSpacing="4">
|
|
<Button Text="Save"
|
|
Command="{Binding SaveCommand}" />
|
|
|
|
<Button Grid.Column="1"
|
|
Text="Delete"
|
|
Command="{Binding DeleteCommand}" />
|
|
</Grid>
|
|
</VerticalStackLayout>
|
|
</ContentPage> |