Ez most félig kész ...
This commit is contained in:
@@ -4,64 +4,63 @@
|
||||
x:Class="WorkFlowCheck.MAUI.MainPage"
|
||||
Title="Főmenü">
|
||||
|
||||
<ScrollView>
|
||||
<VerticalStackLayout
|
||||
Padding="30,0"
|
||||
Spacing="25">
|
||||
<!--<Image
|
||||
Source="dotnet_bot.png"
|
||||
HeightRequest="185"
|
||||
Aspect="AspectFit"
|
||||
SemanticProperties.Description="dot net bot in a race car number eight" />-->
|
||||
<Grid RowDefinitions="Auto, * , Auto" Padding="30,0">
|
||||
|
||||
<!--<Label
|
||||
Text="Hello, World!"
|
||||
x:Name="WelcomeLabel"
|
||||
Style="{StaticResource Headline}"
|
||||
SemanticProperties.HeadingLevel="Level1" />-->
|
||||
<ScrollView Grid.Row="1">
|
||||
<VerticalStackLayout Spacing="25">
|
||||
<Frame BorderColor="Gray" Padding="5" Margin="1" HasShadow="True">
|
||||
<VerticalStackLayout>
|
||||
<Label Text="Alapműveletek" FontAttributes="Bold" FontSize="Medium" HorizontalOptions="Center" />
|
||||
<Button
|
||||
x:Name="ButtonSync" Margin="5"
|
||||
Text="Adatok szinkronizálása"
|
||||
SemanticProperties.Hint="Adatok szinkronizálása"
|
||||
Clicked="OnButtonSync"
|
||||
HorizontalOptions="Fill" />
|
||||
<Button
|
||||
x:Name="ButtonBase" Margin="5"
|
||||
Text="Törzsadatok"
|
||||
SemanticProperties.Hint="Törzsadatok"
|
||||
Clicked="OnButtonBaseStock"
|
||||
HorizontalOptions="Fill" />
|
||||
<Button
|
||||
x:Name="NFCTestBtn" Margin="5"
|
||||
Text="NFC olvasó teszt"
|
||||
SemanticProperties.Hint="NFC olvasó teszt"
|
||||
Clicked="OnButtonNFCTest"
|
||||
HorizontalOptions="Fill" />
|
||||
</VerticalStackLayout>
|
||||
</Frame>
|
||||
<Frame BorderColor="Gray" Padding="5" Margin="1" HasShadow="True">
|
||||
<VerticalStackLayout>
|
||||
<Label Text="Ellenőrzés" FontAttributes="Bold" FontSize="Medium" HorizontalOptions="Center" />
|
||||
<Button
|
||||
x:Name="ButtonCheckList" Margin="5"
|
||||
Text="Ellenőrzési feladatok"
|
||||
SemanticProperties.Hint="Ellenőrzési feadatok"
|
||||
Clicked="OnButtonCheckList"
|
||||
HorizontalOptions="Fill" />
|
||||
</VerticalStackLayout>
|
||||
</Frame>
|
||||
|
||||
<!--<Label
|
||||
Text="Welcome to .NET Multi-platform App UI"
|
||||
Style="{StaticResource SubHeadline}"
|
||||
SemanticProperties.HeadingLevel="Level2"
|
||||
SemanticProperties.Description="Welcome to dot net Multi platform App U I" />-->
|
||||
<!--<Button
|
||||
x:Name="CounterBtn"
|
||||
Text="Hahó II."
|
||||
SemanticProperties.Hint="Counts the number of times you click"
|
||||
Clicked="OnCounterClicked"
|
||||
HorizontalOptions="Fill" />-->
|
||||
<Frame BorderColor="Gray" Padding="5" Margin="1" HasShadow="True">
|
||||
<VerticalStackLayout>
|
||||
<Button
|
||||
x:Name="ButtonSync" Margin="5"
|
||||
Text="Adatok szinkronizálása"
|
||||
SemanticProperties.Hint="Adatok szinkronizálása"
|
||||
Clicked="OnButtonSync"
|
||||
HorizontalOptions="Fill" />
|
||||
<Button
|
||||
x:Name="ButtonBase" Margin="5"
|
||||
Text="Törzsadatok"
|
||||
SemanticProperties.Hint="Törzsadatok"
|
||||
Clicked="OnButtonBaseStock"
|
||||
HorizontalOptions="Fill" />
|
||||
<Button
|
||||
x:Name="NFCTestBtn" Margin="5"
|
||||
Text="NFC olvasó teszt"
|
||||
SemanticProperties.Hint="NFC olvasó teszt"
|
||||
Clicked="OnButtonNFCTest"
|
||||
HorizontalOptions="Fill" />
|
||||
</VerticalStackLayout>
|
||||
</Frame>
|
||||
<Frame BorderColor="Gray" Padding="5" Margin="1" HasShadow="True">
|
||||
<Button
|
||||
x:Name="LogoutBtn" Margin="5"
|
||||
Text="Kijelentkezés"
|
||||
SemanticProperties.Hint="Kijelentkezés"
|
||||
Clicked="OnButtonLogout"
|
||||
HorizontalOptions="Fill" />
|
||||
</Frame>
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
</VerticalStackLayout>
|
||||
</ScrollView>
|
||||
|
||||
<Frame Grid.Row="2" BorderColor="Gray" Padding="5" Margin="1" HasShadow="True">
|
||||
<Button
|
||||
x:Name="LogoutBtn" Margin="5"
|
||||
BackgroundColor="DarkRed"
|
||||
Text="Kijelentkezés"
|
||||
SemanticProperties.Hint="Kijelentkezés"
|
||||
Clicked="OnButtonLogout"
|
||||
HorizontalOptions="Fill"
|
||||
VerticalOptions="Center">
|
||||
<Button.ImageSource>
|
||||
<FontImageSource FontFamily="FontAwesome" Glyph="" Size="20" />
|
||||
</Button.ImageSource>
|
||||
</Button>
|
||||
</Frame>
|
||||
|
||||
</Grid>
|
||||
|
||||
</ContentPage>
|
||||
|
||||
Reference in New Issue
Block a user